diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-01-02 11:29:30 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-01-02 11:29:30 +0000 |
commit | ea6d87ddd33ce02937968cee386a06ff08b6359c (patch) | |
tree | bdff3010aa533b672b762ad06d304a834baa83f3 /openwrt/package/ntpclient/files | |
parent | bb6b2354f4dfb880001c9c374a6e33a78208d7bc (diff) | |
download | mtk-20170518-ea6d87ddd33ce02937968cee386a06ff08b6359c.zip mtk-20170518-ea6d87ddd33ce02937968cee386a06ff08b6359c.tar.gz mtk-20170518-ea6d87ddd33ce02937968cee386a06ff08b6359c.tar.bz2 |
Corrected ticket #118
SVN-Revision: 2802
Diffstat (limited to 'openwrt/package/ntpclient/files')
-rw-r--r-- | openwrt/package/ntpclient/files/ntpclient.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/ntpclient/files/ntpclient.init b/openwrt/package/ntpclient/files/ntpclient.init index 2ad4beb..313ae67 100644 --- a/openwrt/package/ntpclient/files/ntpclient.init +++ b/openwrt/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>&- | awk '$1 == "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>&- | awk '$1 == "0.0.0.0"' >&- || killall ntpclient 2>&- >&- ;; esac |