Add ntpclient config files by Carlos Sobrinho, thanks ! (#1052)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6116 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian
2007-01-17 19:31:22 +00:00
parent 9a003aa17a
commit dc76950743
3 changed files with 36 additions and 6 deletions

View File

@ -1,13 +1,32 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
ntp_server=$(nvram get ntp_server)
. /etc/functions.sh
config_cb() {
local cfg="$CONFIG_SECTION"
local cfgtype
config_get cfgtype "$cfg" TYPE
case "$cfgtype" in
ntp_client)
config_get hostname $cfg hostname
config_get port $cfg port
config_get count $cfg count
ps x | grep 'bin/[n]tpclient' >&- || {
route -n 2>&- | grep '^0.0.0.0' >&- && {
/usr/sbin/ntpclient -c ${count:-1} -s -h $hostname -p ${port:-123} 2>&- >&-
}
}
;;
esac
}
case "${ACTION:-ifup}" in
ifup)
ps x | grep 'bin/[n]tpclient' >&- || {
route -n 2>&- | grep '^0.0.0.0' >&- && /usr/sbin/ntpclient -c 1 -s -h ${ntp_server:-pool.ntp.org} &
}
;;
config_load ntp_client&
;;
ifdown)
route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;;
route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&-
;;
esac