
#-----------------------------------------------------------------------
# Copyright (C) 2000-2001, Jean-Sebastien Morisset <jsmoriss@mvlan.net>
#-----------------------------------------------------------------------
# $Id: 570-rsync-clients,v 1.2 2001/08/11 17:01:21 jsmoriss Exp $
#-----------------------------------------------------------------------
# MODULE CONFIGURATION
#-----------------------------------------------------------------------
#
#m# 123
#a# accept ignore deny
#i# cluster
#n# rsync
#t# clients
#
#   |--------------------------------------------------------------------|
#d# Allow incoming rsync from these hosts/networks. 
#   |--------------------------------------------------------------------|
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------

for action in ignore deny accept
do
	for host in `Option_Value $action $INTOPT rsync clients`
	do
		Hostports $action local tcp "RSYNC" $host rsync
	done
done
unset action host

