diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-11-07 22:58:34 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-11-07 22:58:34 +0000 |
commit | 76be14c4c26d8c38aa198a811867a797dcc5d403 (patch) | |
tree | 96b35712477b6f5ac1b672b4f3f17b3c0fa14742 /package/base-files/files/etc/init.d/watchdog | |
parent | 6aa646482adcd2b00f5e05e59c55084d21a06159 (diff) | |
download | upstream-76be14c4c26d8c38aa198a811867a797dcc5d403.tar.gz upstream-76be14c4c26d8c38aa198a811867a797dcc5d403.tar.bz2 upstream-76be14c4c26d8c38aa198a811867a797dcc5d403.zip |
package/base-files: use new service wrapper
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28835 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc/init.d/watchdog')
-rwxr-xr-x | package/base-files/files/etc/init.d/watchdog | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/package/base-files/files/etc/init.d/watchdog b/package/base-files/files/etc/init.d/watchdog index 65a45e53f2..299c891428 100755 --- a/package/base-files/files/etc/init.d/watchdog +++ b/package/base-files/files/etc/init.d/watchdog @@ -1,12 +1,13 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2008-2010 OpenWrt.org +# Copyright (C) 2008-2011 OpenWrt.org START=97 + start() { - [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \ - watchdog -t 5 /dev/watchdog + [ -c /dev/watchdog ] || return 1 + [ -x /sbin/watchdog ] || return 1 + service_start /sbin/watchdog -t 5 /dev/watchdog } - stop() { - killall -q watchdog + service_stop /sbin/watchdog } |