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 | be5c7d2d2546417767bc5c3471b246fa4f94313e (patch) | |
tree | 302a83f06c200757c896bbabe23db4af10445042 /package/ntpclient/files | |
parent | 816e158a73c253f73d53ec19c73cf6c7ea2e3736 (diff) | |
download | upstream-be5c7d2d2546417767bc5c3471b246fa4f94313e.tar.gz upstream-be5c7d2d2546417767bc5c3471b246fa4f94313e.tar.bz2 upstream-be5c7d2d2546417767bc5c3471b246fa4f94313e.zip |
add hotplug stuff to trunk/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2364 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ntpclient/files')
-rw-r--r-- | package/ntpclient/files/ntpclient.init | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/package/ntpclient/files/ntpclient.init b/package/ntpclient/files/ntpclient.init index 923022bfcc..2ad4beb773 100644 --- a/package/ntpclient/files/ntpclient.init +++ b/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 |