xref: /netbsd-src/external/bsd/ntp/dist/scripts/rc/ntpwait (revision 865c57e0098351fba0d2d2a97b33e7e0270e62c6)
1#!/bin/sh
2
3NTPWAIT=/usr/sbin/ntpwait
4
5ntpwait_start() {
6    $NTPWAIT -v
7}
8
9case "$1" in
10    'start')
11        ntpwait_start
12        ;;
13    *)
14        echo "Usage: $0 (start)"
15esac
16