mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
package/base-files: use new service wrapper
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28835 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user