diff options
| author | Florian Fainelli <florian@openwrt.org> | 2006-05-20 19:06:26 +0000 |
|---|---|---|
| committer | Florian Fainelli <florian@openwrt.org> | 2006-05-20 19:06:26 +0000 |
| commit | 5e919b9d2d0a2ee006f8555c6c1de2e2341bedf6 (patch) | |
| tree | 809999b6c8cfe5aa4d87e995c9448d524faba847 | |
| parent | 4c9376dfa7f366abe3c865ea629e9013fd57d137 (diff) | |
| download | upstream-5e919b9d2d0a2ee006f8555c6c1de2e2341bedf6.tar.gz upstream-5e919b9d2d0a2ee006f8555c6c1de2e2341bedf6.tar.bz2 upstream-5e919b9d2d0a2ee006f8555c6c1de2e2341bedf6.zip | |
webif :
- add support for wl0_wdstimeout, wl0_antdiv (request by french Wireless User Groups), wl0_distance
- updated french translation, needs to update other translations
- Fixed cancel button not working, closes #543
- Preliminary OpenVPN webif support, partially closes #525
ntpclient: fix process running detection, closes #505
base-files:
- clean up per interface static_route code,restore old behaviour (with metric, gateway ...), closes #484
- add ifup_interfaces variable, can be used as order to bring interfaces, closes #309
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3809 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/package/ntpclient/files/ntpclient.init | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/package/ntpclient/files/ntpclient.init b/openwrt/package/ntpclient/files/ntpclient.init index a8944c60eb9..3a211842028 100644 --- a/openwrt/package/ntpclient/files/ntpclient.init +++ b/openwrt/package/ntpclient/files/ntpclient.init @@ -1,7 +1,8 @@ #!/bin/sh -case "$ACTION" in +ntp_server=$(nvram get ntp_server) +case "${ACTION:-ifup}" in ifup) - ps x | grep '[n]tpclient' >&- || { + 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} & } ;; |
