2b15cb3d09
Thanks to roberto for providing pointers to wedge this into HEAD. Approved by: roberto
16 lines
179 B
Bash
16 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
|