Files
OpenBMC/meta-openembedded/meta-networking/recipes-support/chrony/chrony/chronyd
T
2026-04-23 17:07:55 +08:00

59 lines
1.1 KiB
Bash

#! /bin/sh
# System V init script for chrony
# Adapted from the script already in meta-networking for ntpd
### BEGIN INIT INFO
# Provides: chrony
# Required-Start: $network $remote_fs $syslog
# Required-Stop: $network $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop:
# Short-Description: Start chrony time daemon
### END INIT INFO
PATH=/sbin:/bin:/usr/bin:/usr/sbin
DAEMON=/usr/sbin/chronyd
PIDFILE=/run/chrony/chronyd.pid
test -x $DAEMON -a -r /etc/chrony.conf || exit 0
# Source function library.
. /etc/init.d/functions
# Functions to do individual actions
startdaemon(){
echo -n "Starting chronyd: "
start-stop-daemon --start --quiet --oknodo --pidfile $PIDFILE --startas $DAEMON -- "$@"
echo "done"
}
stopdaemon(){
echo -n "Stopping chronyd: "
start-stop-daemon --stop --quiet --oknodo -p $PIDFILE
echo "done"
}
case "$1" in
start)
startdaemon
;;
stop)
stopdaemon
;;
force-reload | restart | reload)
stopdaemon
startdaemon
;;
status)
status /usr/sbin/chronyd;
exit $?
;;
*)
echo "Usage: chronyd { start | stop | status | restart | reload }" >&2
exit 1
;;
esac
exit 0