1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-22 19:17:37 +03:00
openwrt-xburst/openwrt/package/ntpclient/files/ntpclient.init

12 lines
316 B
Plaintext
Raw Normal View History

#!/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