Begin minor cleanup work for 1.0

master
bbruns 2011-10-28 21:36:20 +00:00
parent e4381732c6
commit afa56a8cef
1 changed files with 10 additions and 5 deletions

View File

@ -56,7 +56,12 @@ else
exit 1 exit 1
fi fi
. $BASEDIR/include/functions if [ -r $BASEDIR/include/functions ]; then
. $BASEDIR/include/functions
else
echo -e "${RED}Error: Can not load functions library file. There is no way to make this tool work without it."
exit 1
fi
while [ $# -gt 0 ]; do while [ $# -gt 0 ]; do
case "$1" in case "$1" in
@ -98,7 +103,7 @@ if [ "$UID" != "0" ]; then
exit 2 exit 2
fi fi
if [ ! -x "$IPTABLES" ]; then if [ ! -x "${IPTABLES}" ]; then
display_c RED "iptables command not found. Please make sure you have the iptables" display_c RED "iptables command not found. Please make sure you have the iptables"
display_c RED "installed (package or source) and you have the IPTABLES option properly" display_c RED "installed (package or source) and you have the IPTABLES option properly"
display_c RED "defined in the 'options' file." display_c RED "defined in the 'options' file."
@ -106,7 +111,7 @@ if [ ! -x "$IPTABLES" ]; then
fi fi
if [ ! -x "$IP6TABLES" ] && [ $IPV6 == "1" ]; then if [ ! -x "${IP6TABLES}" ] && [ $IPV6 == "1" ]; then
display_c RED "ip6tables command not found. Please make sure you have the iptables" display_c RED "ip6tables command not found. Please make sure you have the iptables"
display_c RED "installed (package or source) and you have the IP6TABLES option properly" display_c RED "installed (package or source) and you have the IP6TABLES option properly"
display_c RED "defined in the 'options' file." display_c RED "defined in the 'options' file."
@ -114,12 +119,12 @@ if [ ! -x "$IP6TABLES" ] && [ $IPV6 == "1" ]; then
fi fi
if [[ "$EXTIF" == "auto" ]]; then if [[ "${EXTIF}" == "auto" ]]; then
EXTIF=`$EXTIF_FIND` EXTIF=`$EXTIF_FIND`
display_c YELLOW "Found default interface at: ${BLUE}${EXTIF}${DEFAULT_COLOR}" display_c YELLOW "Found default interface at: ${BLUE}${EXTIF}${DEFAULT_COLOR}"
fi fi
if [[ "$EXTIP" == "auto" ]]; then if [[ "${EXTIP}" == "auto" ]]; then
EXTIP=`$EXTIP_FIND ${EXTIF}` EXTIP=`$EXTIP_FIND ${EXTIF}`
display_c YELLOW "Found default interface IP at: ${BLUE}${EXTIP}${DEFAULT_COLOR}" display_c YELLOW "Found default interface IP at: ${BLUE}${EXTIP}${DEFAULT_COLOR}"
fi fi