mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-23 16:13:18 +01:00
Fix stupid bugs
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5981 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
85b5fb2e45
commit
b0b5a067d7
@ -353,7 +353,7 @@ on the SHOREWALL_COMPILER setting in shorewall.conf.
|
||||
|
||||
The value of this new option can be either 'perl' or 'shell'.
|
||||
|
||||
If you add 'SHOREWALL_COMPILER=shell' to /etc/shorewall/shorewall.conf
|
||||
If you add 'SHOREWALL_COMPILER=perl' to /etc/shorewall/shorewall.conf
|
||||
then by default, the new compiler will be used on the system. If you
|
||||
add it to shorewall.conf in a separate directory (such as a
|
||||
Shorewall-lite export directory) then the new compiler will only be
|
||||
|
@ -247,11 +247,7 @@ compiler() {
|
||||
if [ -n "$SHOREWALL_COMPILER" ]; then
|
||||
compiler="$SHOREWALL_COMPILER"
|
||||
elif [ -x $sc ]; then
|
||||
if [ -x $pc ]; then
|
||||
compiler=
|
||||
else
|
||||
compiler=shell
|
||||
fi
|
||||
compiler=shell
|
||||
elif [ -x $pc ]; then
|
||||
compiler=perl
|
||||
else
|
||||
|
@ -3715,7 +3715,7 @@ __EOF__
|
||||
|
||||
save_progress_message "Setting up Route Filtering..."
|
||||
|
||||
if [ -z "$ROUTE_FILTER" ]; THEN
|
||||
if [ -z "$ROUTE_FILTER" ]; then
|
||||
indent >&3 << __EOF__
|
||||
|
||||
for f in /proc/sys/net/ipv4/conf/*; do
|
||||
|
Loading…
Reference in New Issue
Block a user