#
-# Copyright (C) 2006-2009 OpenWrt.org
+# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
PKG_NAME:=ntpclient
PKG_VERSION:=2007_365
-PKG_RELEASE:=3
+PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://doolittle.icarus.com/ntpclient/
unset PORT
unset INTERVAL
unset COUNT
+unset INTERFACE_GLOBAL
+
NTPC=`which ntpclient`
check_server() {
local hostname
local port
+ local interface
[ -n "$SERVER" ] && return
config_get hostname $1 hostname
config_get port $1 port
+ config_get interface $1 interface
+
+ [ -z "$interface" ] && interface=$INTERFACE_GLOBAL
+
+ [ -n "$interface" ] && {
+ # $INTERFACE is passed from hotplug event
+ [ "$interface" = "$INTERFACE" ] || return
+ }
+
[ -z "$hostname" ] && return
$NTPC -c 1 -p ${port:-123} -i 2 -h $hostname > /dev/null && { SERVER=$hostname; PORT=${port:-123}; }
}
config_get interval $1 interval
config_get count $1 count
+ config_get interface $1 interface
[ -n "$count" ] && COUNT=$count
[ -n "$interval" ] && INTERVAL=$interval
+ [ -n "$interface" ] && INTERFACE_GLOBAL=$interface
}
config_load ntpclient