mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
41 lines
655 B
Bash
41 lines
655 B
Bash
#!/bin/sh
|
|
|
|
# Start/stop/restart the network time protocol daemon
|
|
|
|
# Written for Slackware Linux by Robby Workman <http://rlworkman.net>
|
|
# ## (by modifying one of Pat's scripts)
|
|
|
|
# Add -s to the command to set the time at startup
|
|
|
|
ntpd_start() {
|
|
if [ -x /usr/sbin/ntpd ]; then
|
|
echo "Starting ntpd daemon: /usr/sbin/ntpd "
|
|
/usr/sbin/ntpd 2> /dev/null
|
|
sleep 1
|
|
fi
|
|
}
|
|
|
|
ntpd_stop() {
|
|
echo "Stopping ntpd daemon..."
|
|
killall ntpd 2> /dev/null
|
|
}
|
|
|
|
ntpd_restart() {
|
|
ntpd_stop
|
|
sleep 1
|
|
ntpd_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
ntpd_start
|
|
;;
|
|
'stop')
|
|
ntpd_stop
|
|
;;
|
|
'restart')
|
|
ntpd_restart
|
|
;;
|
|
*)
|
|
echo "usage $0 start|stop|restart"
|
|
esac
|