de34f4febb
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
11 lines
316 B
Bash
11 lines
316 B
Bash
#!/bin/sh
|
|
ntp_server=$(nvram get ntp_server)
|
|
case "${ACTION:-ifup}" in
|
|
ifup)
|
|
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} &
|
|
}
|
|
;;
|
|
ifdown)
|
|
route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;;
|
|
esac
|