tag rc6
[openwrt/svn-archive/openwrt.git] / package / ntpclient / files / ntpclient.init
diff --git a/package/ntpclient/files/ntpclient.init b/package/ntpclient/files/ntpclient.init
new file mode 100644 (file)
index 0000000..116e9fe
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/sh
+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 ${server:-pool.ntp.org} &
+               }
+               ;;
+       ifdown)
+               route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;;
+esac