
#-----------------------------------------------------------------------
# CHANGES
#-----------------------------------------------------------------------
#
# 2001-02-07  Dougal Holmes <dholmes@bigpond.net.au>
#             Initial module written for v5.1.
#
#-----------------------------------------------------------------------
# MODULE CONFIGURATION
#-----------------------------------------------------------------------
#
#m# 23
#a# accept
#n# ntp
#t# clients
#
#   |--------------------------------------------------------------------|
#d# The NTP clients hostname(s) who get their time from you.
#d#
#d# Example:
#d#   accept-eth1-ntp-clients = 192.168.1.0/24
#   |--------------------------------------------------------------------|
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

for host in `Option_Value accept $INTOPT ntp clients`
do
	Accept_Hostports local udp "NTP" $host ntp
done
unset host

