packages/net/ntpd/files/ntpd.init

23 lines
489 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=60
STEP_SERVERS="pool.ntp.org pool.ntp.org pool.ntp.org"
PIDFILE="/var/run/ntpd.pid"
TIMEOUT="2" # in seconds
start() {
# ln -sf /dev/ttyS0 /dev/gps0
# /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
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() {
[ -f "$PIDFILE" ] && kill $(cat "$PIDFILE") 2>/dev/null >/dev/null
}