2005-04-05 01:12:17 +03:00
|
|
|
#!/bin/sh
|
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
2006-05-20 22:06:26 +03:00
|
|
|
ntp_server=$(nvram get ntp_server)
|
|
|
|
case "${ACTION:-ifup}" in
|
2005-11-07 03:12:51 +02:00
|
|
|
ifup)
|
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
2006-05-20 22:06:26 +03:00
|
|
|
ps x | grep 'bin/[n]tpclient' >&- || {
|
2006-04-05 05:09:22 +03:00
|
|
|
route -n 2>&- | grep '^0.0.0.0' >&- && /usr/sbin/ntpclient -c 1 -s -h ${ntp_server:-pool.ntp.org} &
|
2005-11-07 03:12:51 +02:00
|
|
|
}
|
|
|
|
;;
|
|
|
|
ifdown)
|
2006-01-10 23:24:31 +02:00
|
|
|
route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;;
|
2005-11-07 03:12:51 +02:00
|
|
|
esac
|