Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > by-pkgid > 0f743203f201d0e75a1d734a2823e0e2 > files > 4

chrony-1.17-1mdk.i586.rpm

#! /bin/sh
#
# chronyd: - 60 20
# description: Chrony is a implementation of NTP that support disconnected
#              operation

# Get config.
. /etc/sysconfig/network

# Get functions
. /etc/rc.d/init.d/functions

# Check that networking is up.
if [ ${NETWORKING} = "no" ]
then
	exit 0
fi

# See how we were called.
case "$1" in
  start)
	gprintf "Starting chrony services: "
	daemon chronyd

	echo
	touch /var/lock/subsys/chronyd
	;;
  stop)
	gprintf "Stopping chrony services: "
	killproc chronyd

	echo
	rm -f /var/lock/subsys/chronyd
	;;
  status)
	status chronyd
	;;
  restart)
	$0 stop
       echo -n "Starting chrony services:
	daemon chronyd
	echo
	touch /var/lock/subsys/chronyd
	;;
  *)
	gprintf "Usage: chronyd {start|stop|status|restart}\n"
	exit 1
esac

exit 0