]> CyberLeo.Net >> Repos - FreeBSD/releng/10.1.git/blob - contrib/ntp/scripts/rc/ntpwait
Upgrade NTP to 4.2.8p4.
[FreeBSD/releng/10.1.git] / contrib / ntp / scripts / rc / ntpwait
1 #!/bin/sh
2
3 NTPWAIT=/usr/sbin/ntpwait
4
5 ntpwait_start() {
6     $NTPWAIT -v
7 }
8
9 case "$1" in
10     'start')
11         ntpwait_start
12         ;;
13     *)
14         echo "Usage: $0 (start)"
15 esac