mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
34ddf9962a
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
################################################################################
|
|
chronyd_start() {
|
|
################################################################################
|
|
if [ -n "$(pidof chronyd)" ]; then
|
|
echo "chronyd seems to be already running."
|
|
else
|
|
echo "Starting chronyd: /usr/sbin/chronyd -u chrony"
|
|
/usr/sbin/chronyd -u chrony
|
|
fi
|
|
}
|
|
|
|
################################################################################
|
|
chronyd_stop() {
|
|
################################################################################
|
|
if [ -z "$(pidof chronyd)" ]; then
|
|
echo "chronyd does not seem to be running."
|
|
else
|
|
echo "Stopping chronyd..."
|
|
kill $(cat /var/run/chronyd.pid)
|
|
fi
|
|
}
|
|
|
|
################################################################################
|
|
chronyd_restart() {
|
|
################################################################################
|
|
if [ -n "$(pidof chronyd)" ]; then
|
|
chronyd_stop
|
|
sleep 1
|
|
fi
|
|
|
|
chronyd_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
chronyd_start ;;
|
|
'stop')
|
|
chronyd_stop ;;
|
|
'restart')
|
|
chronyd_restart ;;
|
|
*)
|
|
echo "usage: $0 start|stop|restart" ;;
|
|
esac
|