From f3e5707f9a6e2aab0fc27b6cb2cd6173fafd11dc Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 7 Nov 2011 22:58:34 +0000 Subject: package/base-files: use new service wrapper git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28835 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/files/etc/init.d/sysntpd | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'package/base-files/files/etc/init.d/sysntpd') diff --git a/package/base-files/files/etc/init.d/sysntpd b/package/base-files/files/etc/init.d/sysntpd index fefb48fb1..aa35da831 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 } -- cgit v1.2.3