webif : - add support for wl0_wdstimeout, wl0_antdiv (request by french Wireless...
authorFlorian Fainelli <florian@openwrt.org>
Sat, 20 May 2006 19:06:26 +0000 (19:06 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Sat, 20 May 2006 19:06:26 +0000 (19:06 +0000)
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

openwrt/package/ntpclient/files/ntpclient.init

index a8944c60eb9725b72087565817da5dddb693110f..3a2118420282f3810cfebd9b85d51b8d33c933bf 100644 (file)
@@ -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} &
                }
                ;;