#!/bin/sh
#	debug 0.01
#
#	Copyright (C) 2002:	Manel Marin <manel3@wanadoo.es>
#	Licence:		GNU GPL version >= 2
#
#
#	Hace echo de la cadena encomillada si esta definida la variable de
#	entorno $DEBUG (con export DEBUG=si) y nada si no lo est
#
#	PORQUE
# 	Nos permite mostrar la regla en el script firewall cuando se hace debug
#
#	Uso:	debug "#NO   texto de la regla"
#
#
#	------
#	Echoes the quoted string if defined environment var $DEBUG (with
#	export DEBUG=yes) and nothing if it is not
#
#	WHY
#	It allow us to show the rule in the firewall script when doing debug
#
#	Use:	debug "#NO   rule text"
#
PATH=/usr/lib/firewall-easy:/sbin:/usr/sbin:/bin:/usr/bin


if [ "$DEBUG" != "" ]
then
    echo ""
    echo "$*"		# Si DEBUG mostrar comando / If DEBUG show command
fi
