webif :
[openwrt-10.03/.git] / openwrt / package / ntpclient / files / ntpclient.init
index 923022bfccbcf332467e83119be06930521577cb..3a2118420282f3810cfebd9b85d51b8d33c933bf 100644 (file)
@@ -1,2 +1,11 @@
 #!/bin/sh
-/usr/sbin/ntpclient -c 1 -s -h pool.ntp.org &
+ntp_server=$(nvram get ntp_server)
+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} &
+               }
+               ;;
+       ifdown)
+               route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;;
+esac