mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
15 lines
179 B
Bash
15 lines
179 B
Bash
#!/bin/sh
|
|
|
|
NTPWAIT=/usr/sbin/ntpwait
|
|
|
|
ntpwait_start() {
|
|
$NTPWAIT -v
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
ntpwait_start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 (start)"
|
|
esac
|