openwrtv4/openwrt/package/ntpclient/files/ntpclient.init
Felix Fietkau 2e8e51060f add hotplug stuff to trunk/
SVN-Revision: 2364
2005-11-07 01:12:51 +00:00

11 lines
294 B
Bash

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