X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0bb68e81eca839c8eed0c629b403ac558ea662e6..52f48363876d087252d0f217ce63df5fc5195a55:/package/ntpclient/files/ntpclient.init diff --git a/package/ntpclient/files/ntpclient.init b/package/ntpclient/files/ntpclient.init index 2ad4beb77..c8505c5ca 100644 --- a/package/ntpclient/files/ntpclient.init +++ b/package/ntpclient/files/ntpclient.init @@ -3,9 +3,9 @@ server=$(nvram get ntp_server) case "$ACTION" in ifup) ps x | grep '[n]tpclient' >&- || { - route -n 2>&- | grep '0.0.0.0' >&- && /usr/sbin/ntpclient -c 1 -s -h ${server:-pool.ntp.org} & + route -n 2>&- | grep '^0.0.0.0' >&- && /usr/sbin/ntpclient -c 1 -s -h ${server:-pool.ntp.org} & } ;; ifdown) - route -n 2>&- | grep '0.0.0.0' >&- || killall ntpclient 2>&- >&- ;; + route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;; esac