3a2118420282f3810cfebd9b85d51b8d33c933bf
[openwrt/svn-archive/archive.git] / net / ntpclient / files / ntpclient.init
1 #!/bin/sh
2 ntp_server=$(nvram get ntp_server)
3 case "${ACTION:-ifup}" in
4 ifup)
5 ps x | grep 'bin/[n]tpclient' >&- || {
6 route -n 2>&- | grep '^0.0.0.0' >&- && /usr/sbin/ntpclient -c 1 -s -h ${ntp_server:-pool.ntp.org} &
7 }
8 ;;
9 ifdown)
10 route -n 2>&- | grep '^0.0.0.0' >&- || killall ntpclient 2>&- >&- ;;
11 esac