First set time before running ntpd, fix from #1410

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6426 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-02-28 12:30:57 +00:00
parent bded665d72
commit fac61d23a1

View File

@ -2,12 +2,21 @@
# Copyright (C) 2006 OpenWrt.org # Copyright (C) 2006 OpenWrt.org
START=60 START=60
STEP_SERVERS="pool.ntp.org pool.ntp.org pool.ntp.org"
PIDFILE="/var/run/ntpd.pid"
TIMEOUT="2" # in seconds
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
/usr/sbin/ntpd -g stop
for s in $STEP_SERVERS ; do
/usr/sbin/ntpdate -s -b -u -t "$TIMEOUT" "$s" && break
done
/usr/sbin/ntpd -g -p $PIDFILE
} }
stop() { stop() {
killall ntpd [ -f "$PIDFILE" ] && kill $(cat "$PIDFILE") 2>/dev/null >/dev/null
} }