do not stop the watchdog at reboot/poweroff

This commit is contained in:
Calin Crisan 2016-06-05 13:55:29 +03:00
parent d94ea478df
commit 56d7653353

View File

@ -12,13 +12,17 @@ case "$1" in
;;
stop)
true
;;
reallystop)
msg_begin "Stopping watchdog"
killall watchdog &>/dev/null
test $? == 0 && msg_done || msg_fail
;;
*)
echo $"Usage: $0 {start|stop}"
echo $"Usage: $0 {start|reallystop}"
exit 1
esac