You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
398 B
Plaintext
24 lines
398 B
Plaintext
2 years ago
|
#! /bin/sh
|
||
|
|
||
|
ntpdate=/usr/sbin/ntpdate
|
||
|
|
||
|
test -x "$ntpdate" || exit 0
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
echo -n "Starting ntpdate daemon"
|
||
|
start-stop-daemon --start --background --exec $ntpdate
|
||
|
echo "."
|
||
|
;;
|
||
|
stop)
|
||
|
echo -n "Stopping ntpdate daemon"
|
||
|
start-stop-daemon --stop --name ntpdate
|
||
|
echo "."
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: /etc/init.d/ntpdate {start|stop}"
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
exit 0
|