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 | de34f4febbde95921d4521b9932dc30a73e644f1 (patch) | |
tree | 212f58301c203fc73378493a80c141efb63c65d5 /openwrt/package | |
parent | a082460166d20b293298b100b39d76393d17d812 (diff) | |
download | mtk-20170518-de34f4febbde95921d4521b9932dc30a73e644f1.zip mtk-20170518-de34f4febbde95921d4521b9932dc30a73e644f1.tar.gz mtk-20170518-de34f4febbde95921d4521b9932dc30a73e644f1.tar.bz2 |
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
SVN-Revision: 3809
Diffstat (limited to 'openwrt/package')
-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 a8944c6..3a21184 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} & } ;; |