]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - contrib/ntp/scripts/rc/ntpwait
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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