Fix IP6TABLES when not specified in shorewall6.conf

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9051 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2008-12-14 18:58:31 +00:00
parent 7a13cd2dc7
commit b8deb12b00

View File

@ -206,7 +206,7 @@ sub generate_script_1() {
'[ -x "$IP6TABLES" ] || startup_error "IP6TABLES=$IP6TABLES does not exist or is not executable"',
);
} else {
emit( '[ -z "$IP6TABLES" ] && IP6TABLES=$(mywhich iptables) # /sbin/shorewall6 exports IP6TABLES',
emit( '[ -z "$IP6TABLES" ] && IP6TABLES=$(mywhich ip6tables) # /sbin/shorewall6 exports IP6TABLES',
'[ -n "$IP6TABLES" -a -x "$IP6TABLES" ] || startup_error "Can\'t find ip6tables executable"'
);
}