-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
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10920
3c298f89-4303-0410-b956-
a3cf2f4a3e73
PKG_NAME:=ntp
PKG_VERSION:=4.2.4p4
-PKG_RELEASE:=3
+PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/
#!/bin/sh /etc/rc.common
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2008 OpenWrt.org
-START=60
+START=65
-STEP_SERVERS="0.openwrt.pool.ntp.org 1.openwrt.pool.ntp.org 2.openwrt.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
}
--- /dev/null
+#!/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
+}