13 lines
162 B
Plaintext
13 lines
162 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case "${1}" in
|
||
|
start)
|
||
|
ntpd -q
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: ${0} {start}"
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|