More error checking
parent
fb8f8d11e0
commit
dc2d35f95d
|
@ -22,6 +22,15 @@
|
||||||
# This file defines static variables that we will be using. Normally, you
|
# This file defines static variables that we will be using. Normally, you
|
||||||
# should not be needing to edit these.
|
# should not be needing to edit these.
|
||||||
|
|
||||||
|
# These defines are here to help pre-1.0 users easily upgrade, defines critical defaults
|
||||||
|
# that would otherwise require remaking their options file. I leave this on by default,
|
||||||
|
# but if you want to make sure you have a current options file, define this to 0.
|
||||||
|
if [ $COMPAT_CONFIG == "1" ]; then
|
||||||
|
MODPROBE=`which modprobe`
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# ANSI color sequences
|
# ANSI color sequences
|
||||||
BLUE="\E[34m"
|
BLUE="\E[34m"
|
||||||
GREEN="\E[32m"
|
GREEN="\E[32m"
|
||||||
|
|
|
@ -21,6 +21,11 @@
|
||||||
|
|
||||||
FW_VERSION="0.9.5 BETA"
|
FW_VERSION="0.9.5 BETA"
|
||||||
|
|
||||||
|
# These option is here to help pre-1.0 users easily upgrade, defines critical defaults
|
||||||
|
# that would otherwise require remaking their options file. I leave this on by default,
|
||||||
|
# but if you want to make sure you have a current options file, define this to 0.
|
||||||
|
COMPAT_CONFIG=1
|
||||||
|
|
||||||
BASEDIR=/etc/firewall-sosdg
|
BASEDIR=/etc/firewall-sosdg
|
||||||
#BASEDIR=`pwd`
|
#BASEDIR=`pwd`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue