#!/bin/bash
#
# ntp
# chkconfig: 345 31 69
# description: NTP is used to synchronize computer clocks
#  on a connected network or via GPS/phone/etc.
# processname: ntpd
# config: /etc/config.d/ntp.conf

ARGS="-g"
[ -f "/etc/config.d/ntp.conf" ] && ARGS="$ARGS -c /etc/config.d/ntp.conf"

reload () {
	# ntp is not reload-safe
	$0 restart
}

. /lib/lsb/init-functions

