diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-11-07 01:12:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-11-07 01:12:51 +0000 |
commit | 2e8e51060ffcc46bb1308d7eae4d2bc3456deacf (patch) | |
tree | c82e5b250e3389ec4e4fe8ef16361eae61572845 /openwrt/package/ntpclient/files/ntpclient.init | |
parent | 14a88822fd3f6883af5b4d66f584a3254202fd29 (diff) | |
download | mtk-20170518-2e8e51060ffcc46bb1308d7eae4d2bc3456deacf.zip mtk-20170518-2e8e51060ffcc46bb1308d7eae4d2bc3456deacf.tar.gz mtk-20170518-2e8e51060ffcc46bb1308d7eae4d2bc3456deacf.tar.bz2 |
add hotplug stuff to trunk/
SVN-Revision: 2364
Diffstat (limited to 'openwrt/package/ntpclient/files/ntpclient.init')
-rw-r--r-- | openwrt/package/ntpclient/files/ntpclient.init | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/openwrt/package/ntpclient/files/ntpclient.init b/openwrt/package/ntpclient/files/ntpclient.init index 923022b..2ad4beb 100644 --- a/openwrt/package/ntpclient/files/ntpclient.init +++ b/openwrt/package/ntpclient/files/ntpclient.init @@ -1,2 +1,11 @@ #!/bin/sh -/usr/sbin/ntpclient -c 1 -s -h pool.ntp.org & +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 |