diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-01-30 18:17:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-01-30 18:17:52 +0000 |
commit | 541725ce1897acbd543d1e82e2b1b2728a8f6856 (patch) | |
tree | 6aef4533e902f7f3dfc24d3726ee686d95bd28cf /package/base-files/files/etc/init.d/boot | |
parent | d46a32fa607aaf688327f69830b4ebf02df07223 (diff) | |
download | upstream-541725ce1897acbd543d1e82e2b1b2728a8f6856.tar.gz upstream-541725ce1897acbd543d1e82e2b1b2728a8f6856.tar.bz2 upstream-541725ce1897acbd543d1e82e2b1b2728a8f6856.zip |
stop syslogd before rebooting, otherwise umount might not work properly when logging to a file (thx, puchu)
SVN-Revision: 19428
Diffstat (limited to 'package/base-files/files/etc/init.d/boot')
-rwxr-xr-x | package/base-files/files/etc/init.d/boot | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index 2ed4c50613..7927af1543 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -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 +} + |