[packages] ntpd: use new service wrapper

git-svn-id: svn://svn.openwrt.org/openwrt/packages@28881 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
tripolar 2011-11-09 16:40:17 +00:00
parent f8dbbac1d8
commit eb87be9cd4

View File

@ -3,15 +3,15 @@
START=65 START=65
PIDFILE="/var/run/ntpd.pid" SERVICE_WRITE_PID=1
SERVICE_DAEMONIZE=1
start() { start() {
# ln -sf /dev/ttyS0 /dev/gps0 # ln -sf /dev/ttyS0 /dev/gps0
# /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf # /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
stop service_start /sbin/ntpd -g -n
/sbin/ntpd -g -p $PIDFILE
} }
stop() { stop() {
[ -f "$PIDFILE" ] && kill $(cat "$PIDFILE") 2>/dev/null >/dev/null service_stop /sbin/ntpd
} }