Merge branch '4.4.8' of ssh://shorewall.git.sourceforge.net/gitroot/shorewall/shorewall into 4.4.8

This commit is contained in:
Tom Eastep 2010-04-23 15:50:50 -07:00
commit 36586e062d

View File

@ -60,3 +60,25 @@ Known problems in Shorewall 4.4.8
and no packets can be sent.
Corrected in Shorewall 4.4.8.4
10) If find_first_interface_address() is called in the params file, a
startup error occurs.
Workaround 1:
Surround the code that calls find_first_interface_address() with:
if [ -n "$IP" ]; then
<code that calls find_first_interface_address()>
fi
Workaround 2:
At the top of /etc/shorewall/params, place this line:
[ -n "${IP:=$(which ip)" ]
Corrected in Shorewall 4.4.8.4