projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
package/base-files: use new service wrapper
[openwrt.git]
/
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
fefb48f
..
aa35da8
100755
(executable)
--- a/
package/base-files/files/etc/init.d/sysntpd
+++ b/
package/base-files/files/etc/init.d/sysntpd
@@
-3,11
+3,12
@@
START=98
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() {
start() {
- [ -x $
BIN ] || exit 0
+ [ -x $
PROG ] || return 1
local peers
local peers
@@
-25,11
+26,10
@@
start() {
append args "-p $peer"
done
append args "-p $peer"
done
- s
tart-stop-daemon -x $BIN -m -p $PID -b -S --
$args
+ s
ervice_start /usr/sbin/ntpd
$args
fi
}
stop() {
fi
}
stop() {
- service_kill ${BIN##*/} $PID
- rm -f $PID
+ service_stop /usr/sbin/ntpd
}
}
This page took
0.04231 seconds
and
4
git commands to generate.