diff --git a/Shorewall-lite/install.sh b/Shorewall-lite/install.sh index e5d77b48c..3c932098a 100755 --- a/Shorewall-lite/install.sh +++ b/Shorewall-lite/install.sh @@ -253,11 +253,11 @@ case "$HOST" in archlinux) echo "Installing ArchLinux-specific configuration..." ;; - suse ) - echo "Installing Suse-specific configuration..." + suse) + echo "Installing Suse-specific configuration..." + ;; + linux) ;; - linux ) - ;; *) echo "ERROR: Unknown HOST \"$HOST\"" >&2 exit 1; diff --git a/Shorewall/Perl/Shorewall/Raw.pm b/Shorewall/Perl/Shorewall/Raw.pm index 5b8add258..d4b879e10 100644 --- a/Shorewall/Perl/Shorewall/Raw.pm +++ b/Shorewall/Perl/Shorewall/Raw.pm @@ -79,7 +79,7 @@ sub process_conntrack_rule( $$$$$$$$$ ) { # A patch that deimplements the NOTRACK target has been posted on the # Netfilter development list # - $target = 'CT--notrack' if have_capability 'CT_TARGET'; + $action = 'CT--notrack' if have_capability 'CT_TARGET'; } else { ( $target, my ( $option, $args, $junk ) ) = split ':', $action, 4;