mirror of https://github.com/hak5/openwrt.git
stop syslogd before rebooting, otherwise umount might not work properly when logging to a file (thx, puchu)
SVN-Revision: 19428lede-17.01
parent
d46a32fa60
commit
541725ce18
|
@ -2,6 +2,7 @@
|
|||
# Copyright (C) 2006 OpenWrt.org
|
||||
|
||||
START=10
|
||||
STOP=98
|
||||
|
||||
system_config() {
|
||||
local cfg="$1"
|
||||
|
@ -80,3 +81,8 @@ start() {
|
|||
|
||||
load_modules /etc/modules.d/*
|
||||
}
|
||||
|
||||
stop() {
|
||||
killall -9 syslogd 2> /dev/null
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue