
#-----------------------------------------------------------------------
# MODULE CONFIGURATION
#-----------------------------------------------------------------------
#
#m# 123
#a# accept
#i# cluster
#n# interbase
#t# clients
#   |--------------------------------------------------------------------|
#d# interbase (Port 3050 TCP)
#d# This allows clients to connect to an Interbase database server located
#d# on the firewall.
#
#-----------------------------------------------------------------------
# START OF MODULE CODE
#-----------------------------------------------------------------------
module_name="interbase"     # module name used in options
module_type="clients"       # the module type (clients, servers, etc.)
service_name="interbase"    # displayed on-screen
service_port="3050"         # port number for this service

for host in `Option_Value accept $INTOPT $module_name $module_type`
do
         Hostports accept local tcp "$service_name" $host $service_port
done

unset module_name module_type service_name service_port
unset action host
