openwrtv3/openwrt/package/ntpclient/files/ntpclient.init
Florian Fainelli ea6d87ddd3 Corrected ticket #118
SVN-Revision: 2802
2006-01-02 11:29:30 +00:00

11 lines
308 B
Bash

#!/bin/sh
server=$(nvram get ntp_server)
case "$ACTION" in
ifup)
ps x | grep '[n]tpclient' >&- || {
route -n 2>&- | awk '$1 == "0.0.0.0"' >&- && /usr/sbin/ntpclient -c 1 -s -h ${server:-pool.ntp.org} &
}
;;
ifdown)
route -n 2>&- | awk '$1 == "0.0.0.0"' >&- || killall ntpclient 2>&- >&- ;;
esac