aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/init.d/sysntpd
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2011-11-07 22:58:34 +0000
committerNicolas Thill <nico@openwrt.org>2011-11-07 22:58:34 +0000
commit93886bc77667952afa306863c766cad00821074e (patch)
treeef648c4f579ed3363cc52af2c9b09f4384159413 /package/base-files/files/etc/init.d/sysntpd
parent10a03275bfcaeca706c2bd20064431f6f3bb6bf5 (diff)
downloadupstream-93886bc77667952afa306863c766cad00821074e.tar.gz
upstream-93886bc77667952afa306863c766cad00821074e.tar.bz2
upstream-93886bc77667952afa306863c766cad00821074e.zip
package/base-files: use new service wrapper
SVN-Revision: 28835
Diffstat (limited to 'package/base-files/files/etc/init.d/sysntpd')
-rwxr-xr-xpackage/base-files/files/etc/init.d/sysntpd12
1 files changed, 6 insertions, 6 deletions
diff --git a/package/base-files/files/etc/init.d/sysntpd b/package/base-files/files/etc/init.d/sysntpd
index fefb48fb19..aa35da8313 100755
--- a/package/base-files/files/etc/init.d/sysntpd
+++ b/package/base-files/files/etc/init.d/sysntpd
@@ -3,11 +3,12 @@
START=98
-BIN=/usr/sbin/ntpd
-PID=/var/run/sysntpd.pid
+SERVICE_DAEMONIZE=1
+SERVICE_WRITE_PID=1
+SERVICE_PID_FILE=/var/run/sysntpd.pid
start() {
- [ -x $BIN ] || exit 0
+ [ -x $PROG ] || return 1
local peers
@@ -25,11 +26,10 @@ start() {
append args "-p $peer"
done
- start-stop-daemon -x $BIN -m -p $PID -b -S -- $args
+ service_start /usr/sbin/ntpd $args
fi
}
stop() {
- service_kill ${BIN##*/} $PID
- rm -f $PID
+ service_stop /usr/sbin/ntpd
}