package/base-files: use new service wrapper
[openwrt.git] / package / base-files / files / etc / init.d / watchdog
index 861a1f9..299c891 100755 (executable)
@@ -1,8 +1,13 @@
 #!/bin/sh /etc/rc.common
-# Copyright (C) 2008 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() {
+       service_stop /sbin/watchdog
 }
This page took 0.02468 seconds and 4 git commands to generate.