forked from extern/shorewall_code
Shorewall 4.4.11.6
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
9b6be52781
commit
4b799cb092
@ -23,7 +23,7 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
%define name shorewall-init
|
||||
%define version 4.4.11
|
||||
%define release 5
|
||||
%define release 6
|
||||
|
||||
Summary: Shorewall-init adds functionality to Shoreline Firewall (Shorewall).
|
||||
Name: %{name}
|
||||
@ -99,6 +99,8 @@ fi
|
||||
%doc COPYING changelog.txt releasenotes.txt
|
||||
|
||||
%changelog
|
||||
* Fri Oct 01 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-6
|
||||
* Sun Sep 12 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-5
|
||||
* Sat Aug 28 2010 Tom Eastep tom@shorewall.net
|
||||
|
@ -26,7 +26,7 @@
|
||||
# You may only use this script to uninstall the version
|
||||
# shown below. Simply run this script to remove Shorewall Firewall
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -22,7 +22,7 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
%define name shorewall-lite
|
||||
%define version 4.4.11
|
||||
%define release 5
|
||||
%define release 6
|
||||
|
||||
Summary: Shoreline Firewall Lite is an iptables-based firewall for Linux systems.
|
||||
Name: %{name}
|
||||
@ -102,6 +102,8 @@ fi
|
||||
%doc COPYING changelog.txt releasenotes.txt
|
||||
|
||||
%changelog
|
||||
* Fri Oct 01 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-6
|
||||
* Sun Sep 12 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-5
|
||||
* Sat Aug 28 2010 Tom Eastep tom@shorewall.net
|
||||
|
@ -26,7 +26,7 @@
|
||||
# You may only use this script to uninstall the version
|
||||
# shown below. Simply run this script to remove Shorewall Firewall
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -343,7 +343,7 @@ sub initialize( $ ) {
|
||||
EXPORT => 0,
|
||||
STATEMATCH => '-m state --state',
|
||||
UNTRACKED => 0,
|
||||
VERSION => "4.4.11.5",
|
||||
VERSION => "4.4.11.6",
|
||||
CAPVERSION => 40411 ,
|
||||
);
|
||||
|
||||
|
@ -2,6 +2,10 @@ Changes in Shorewall 4.4.11.5
|
||||
|
||||
1) Fix SAME handling.
|
||||
|
||||
2) Fix -lite init scripts.
|
||||
|
||||
3) Clamp VERBOSITY to valid range.
|
||||
|
||||
Changes in Shorewall 4.4.11.4
|
||||
|
||||
1) Fix a couple of old optimization bugs.
|
||||
|
@ -22,7 +22,7 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -122,3 +122,23 @@
|
||||
(ip6tables-restore) input.
|
||||
|
||||
Corrected in Shorewall 4.4.11.5.
|
||||
|
||||
19) The Shorewall-lite and Shorewall6-lite Debian init scripts have a
|
||||
syntax error.
|
||||
|
||||
This line:
|
||||
|
||||
[ "$INITLOG" eq "/dev/null" && SHOREWALL_INIT_SCRIPT=1 || SHOREWALL_INIT_SCRIPT=0
|
||||
|
||||
should be:
|
||||
|
||||
[ "$INITLOG" = "/dev/null" ] && SHOREWALL_INIT_SCRIPT=1 || SHOREWALL_INIT_SCRIPT=0
|
||||
|
||||
Corrected in Shorewall 4.4.11.6
|
||||
|
||||
20) If the -v or -q options are used in /sbin/shorewall-lite or
|
||||
/sbin/shorewall6-lite commands that involve the compiled firewall
|
||||
script and the resulting effective VERBOSITY is > 2 or < -1, then
|
||||
the command will fail.
|
||||
|
||||
Corrected in Shorewall 4.4.11.6
|
||||
|
@ -218,6 +218,16 @@ VI. PROBLEMS CORRECTED AND NEW FEATURES IN PRIOR RELEASES
|
||||
I I I. P R O B L E M S C O R R E C T E D I N T H I S R E L E A S E
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
4.4.11.6
|
||||
|
||||
1) The Shorewall-lite and Shorewall6-lite Debian init scripts contained a
|
||||
syntax error.
|
||||
|
||||
2) If the -v or -q options were used in /sbin/shorewall-lite or
|
||||
/sbin/shorewall6-lite commands that involve the compiled firewall
|
||||
script and the resulting effective VERBOSITY was > 2 or < -1, then
|
||||
the command would fail.
|
||||
|
||||
4.4.11.5
|
||||
|
||||
1) The SAME target in tcrules now generates correct iptables-restore
|
||||
|
@ -1,6 +1,6 @@
|
||||
%define name shorewall
|
||||
%define version 4.4.11
|
||||
%define release 5
|
||||
%define release 6
|
||||
|
||||
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
||||
Name: %{name}
|
||||
@ -108,6 +108,8 @@ fi
|
||||
%doc COPYING INSTALL changelog.txt releasenotes.txt Contrib/* Samples
|
||||
|
||||
%changelog
|
||||
* Fri Oct 01 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-6
|
||||
* Sun Sep 12 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-5
|
||||
* Sat Aug 28 2010 Tom Eastep tom@shorewall.net
|
||||
|
@ -26,7 +26,7 @@
|
||||
# You may only use this script to uninstall the version
|
||||
# shown below. Simply run this script to remove Shorewall Firewall
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -22,7 +22,7 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
%define name shorewall6-lite
|
||||
%define version 4.4.11
|
||||
%define release 5
|
||||
%define release 6
|
||||
|
||||
Summary: Shoreline Firewall 6 Lite is an ip6tables-based firewall for Linux systems.
|
||||
Name: %{name}
|
||||
@ -93,6 +93,8 @@ fi
|
||||
%doc COPYING changelog.txt releasenotes.txt
|
||||
|
||||
%changelog
|
||||
* Fri Oct 01 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-6
|
||||
* Sun Sep 12 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-5
|
||||
* Sat Aug 28 2010 Tom Eastep tom@shorewall.net
|
||||
|
@ -26,7 +26,7 @@
|
||||
# You may only use this script to uninstall the version
|
||||
# shown below. Simply run this script to remove Shorewall Firewall
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -22,7 +22,7 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
#
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
%define name shorewall6
|
||||
%define version 4.4.11
|
||||
%define release 5
|
||||
%define release 6
|
||||
|
||||
Summary: Shoreline Firewall 6 is an ip6tables-based firewall for Linux systems.
|
||||
Name: %{name}
|
||||
@ -98,6 +98,8 @@ fi
|
||||
%doc COPYING INSTALL changelog.txt releasenotes.txt tunnel ipsecvpn ipv6 Samples6
|
||||
|
||||
%changelog
|
||||
* Fri Oct 01 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-6
|
||||
* Sun Sep 12 2010 Tom Eastep tom@shorewall.net
|
||||
- Updated to 4.4.11-5
|
||||
* Sat Aug 28 2010 Tom Eastep tom@shorewall.net
|
||||
|
@ -26,7 +26,7 @@
|
||||
# You may only use this script to uninstall the version
|
||||
# shown below. Simply run this script to remove Shorewall Firewall
|
||||
|
||||
VERSION=4.4.11.5
|
||||
VERSION=4.4.11.6
|
||||
|
||||
usage() # $1 = exit status
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user