aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-07-11 17:00:35 +0000
committerJohn Crispin <john@openwrt.org>2013-07-11 17:00:35 +0000
commit8069d87d3c4c3d05fa682fee501f410a5c5b0614 (patch)
treec851341d348a02b98d977a739abd40fb987e5fb8 /package/base-files/files
parent928b503435a4e9ef1f5ddefe52de29cf35be9683 (diff)
downloadupstream-8069d87d3c4c3d05fa682fee501f410a5c5b0614.tar.gz
upstream-8069d87d3c4c3d05fa682fee501f410a5c5b0614.tar.bz2
upstream-8069d87d3c4c3d05fa682fee501f410a5c5b0614.zip
base-files: convert sysntpd init script to procd
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37244
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-xpackage/base-files/files/etc/init.d/sysntpd28
1 files changed, 11 insertions, 17 deletions
diff --git a/package/base-files/files/etc/init.d/sysntpd b/package/base-files/files/etc/init.d/sysntpd
index bb42ef7d3a..c40ee76da3 100755
--- a/package/base-files/files/etc/init.d/sysntpd
+++ b/package/base-files/files/etc/init.d/sysntpd
@@ -3,11 +3,11 @@
START=98
-SERVICE_DAEMONIZE=1
-SERVICE_WRITE_PID=1
+USE_PROCD=1
+PROG=/usr/sbin/ntpd
SERVICE_PID_FILE=/var/run/sysntpd.pid
-start() {
+start_service() {
local peers
local args="-n"
local enable_server
@@ -16,22 +16,16 @@ start() {
config_get peers ntp server
config_get_bool enable_server ntp enable_server 0
- if [ $enable_server -ne 0 ]; then
- append args "-l"
- fi
+ [ $enable_server -eq 0 -a -z "$peers" ] && return
- if [ -n "$peers" ]; then
+ procd_open_instance
+ procd_set_param command "$PROG" -n
+ [ $enable_server -ne 0 ] && procd_append_param command -l
+ [ -n "$peers" ] && {
local peer
for peer in $peers; do
- append args "-p $peer"
+ procd_append_param command -p $peer
done
- fi
-
- if [ "$args" != "-n" ]; then
- service_start /usr/sbin/ntpd $args
- fi
-}
-
-stop() {
- service_stop /usr/sbin/ntpd
+ }
+ procd_close_instance
}