openwrt_archive/net/ntpd/files/ntpdate.init
Andy Boyett 2fcc7135cc [packages] ntpd
-Split ntpdate off of ntpd's init-script, ntpd works properly without it
 -Make ntpd start just after ntpdate (if both are installed)
 -UCI config for ntpdate may be added, but ntpdate will be retired upstream in the future


SVN-Revision: 10920
2008-04-22 23:33:19 +00:00

14 lines
288 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2008 OpenWrt.org
START=60
STEP_SERVERS="0.openwrt.pool.ntp.org 1.openwrt.pool.ntp.org 2.openwrt.pool.ntp.org"
TIMEOUT="2" # in seconds
start() {
for s in $STEP_SERVERS ; do
/usr/sbin/ntpdate -s -b -u -t "$TIMEOUT" "$s" && break
done
}