busybox: shutdown syslogd and klogd on reboot/poweroff

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-09-08 04:27:53 +02:00
parent 0585b016b9
commit 266efcfea3

View File

@ -35,5 +35,10 @@ case $RUNLEVEL in
;; ;;
poweroff|reboot) poweroff|reboot)
progress "Stopping Kernellog daemon"
killall klogd
progress "Stopping Syslog daemon"
killall syslogd
;; ;;
esac esac