commit shorewall for openSUSE:Factory
Hello community, here is the log from the commit of package shorewall for openSUSE:Factory checked in at 2014-09-15 17:41:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/shorewall (Old) and /work/SRC/openSUSE:Factory/.shorewall.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "shorewall" Changes: -------- --- /work/SRC/openSUSE:Factory/shorewall/shorewall.changes 2014-09-05 09:34:34.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.shorewall.new/shorewall.changes 2014-09-15 18:24:48.000000000 +0200 @@ -1,0 +2,16 @@ +Sat Sep 13 16:59:52 UTC 2014 - toganm@opensuse.org + +- Update to version 4.6.3.3 For more details see changelog.txt and + releasenotes.txt + + * Including a PREROUTING SECTION in the accounting file + unconditionally resulted in a fatal error: + + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + + * Previously, the compiler could generate many superfluous rules + to enforce the 'tcpflags', 'nosmurfs' and 'maclist' interface + options. + +------------------------------------------------------------------- Old: ---- shorewall-4.6.3.2.tar.bz2 shorewall-core-4.6.3.2.tar.bz2 shorewall-docs-html-4.6.3.2.tar.bz2 shorewall-init-4.6.3.2.tar.bz2 shorewall-lite-4.6.3.2.tar.bz2 shorewall6-4.6.3.2.tar.bz2 shorewall6-lite-4.6.3.2.tar.bz2 New: ---- shorewall-4.6.3.3.tar.bz2 shorewall-core-4.6.3.3.tar.bz2 shorewall-docs-html-4.6.3.3.tar.bz2 shorewall-init-4.6.3.3.tar.bz2 shorewall-lite-4.6.3.3.tar.bz2 shorewall6-4.6.3.3.tar.bz2 shorewall6-lite-4.6.3.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ shorewall.spec ++++++ --- /var/tmp/diff_new_pack.5JNoix/_old 2014-09-15 18:24:50.000000000 +0200 +++ /var/tmp/diff_new_pack.5JNoix/_new 2014-09-15 18:24:50.000000000 +0200 @@ -20,7 +20,7 @@ %define have_systemd 1 Name: shorewall -Version: 4.6.3.2 +Version: 4.6.3.3 Release: 0 Summary: Shoreline Firewall is an iptables-based firewall for Linux systems License: GPL-2.0 ++++++ shorewall-4.6.3.2.tar.bz2 -> shorewall-4.6.3.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/Perl/Shorewall/Accounting.pm new/shorewall-4.6.3.3/Perl/Shorewall/Accounting.pm --- old/shorewall-4.6.3.2/Perl/Shorewall/Accounting.pm 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/Perl/Shorewall/Accounting.pm 2014-09-12 05:58:39.000000000 +0200 @@ -155,8 +155,6 @@ my ($action, $chain, $source, $dest, $proto, $ports, $sports, $user, $mark, $ipsec, $headers ) = @_; - $acctable = $config{ACCOUNTING_TABLE}; - $jumpchainref = 0; $asection = LEGACY if $asection < 0; @@ -453,6 +451,8 @@ set_section_function( &process_section ); + $acctable = $config{ACCOUNTING_TABLE}; + first_entry "$doing $fn..."; my $nonEmpty = 0; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/Perl/Shorewall/Config.pm new/shorewall-4.6.3.3/Perl/Shorewall/Config.pm --- old/shorewall-4.6.3.2/Perl/Shorewall/Config.pm 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/Perl/Shorewall/Config.pm 2014-09-12 05:58:39.000000000 +0200 @@ -709,7 +709,7 @@ TC_SCRIPT => '', EXPORT => 0, KLUDGEFREE => '', - VERSION => "4.6.3.2", + VERSION => "4.6.3.3", CAPVERSION => 40600 , ); # diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/Perl/Shorewall/Misc.pm new/shorewall-4.6.3.3/Perl/Shorewall/Misc.pm --- old/shorewall-4.6.3.2/Perl/Shorewall/Misc.pm 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/Perl/Shorewall/Misc.pm 2014-09-12 05:58:39.000000000 +0200 @@ -994,7 +994,7 @@ for my $hostref ( @$list ) { $interface = $hostref->[0]; my $ipsec = $hostref->[1]; - my @policy = have_ipsec ? ( policy => "--pol $ipsec --dir in" ) : (); + my @policy = $ipsec && have_ipsec ? ( policy => "--pol $ipsec --dir in" ) : (); my $target = source_exclusion( $hostref->[3], $chainref ); for $chain ( option_chains $interface ) { @@ -1118,7 +1118,8 @@ for my $hostref ( @$list ) { my $interface = $hostref->[0]; my $target = source_exclusion( $hostref->[3], $chainref ); - my @policy = have_ipsec ? ( policy => "--pol $hostref->[1] --dir in" ) : (); + my $ipsec = $hostref->[1]; + my @policy = $ipsec && have_ipsec ? ( policy => "--pol $ipsec --dir in" ) : (); for $chain ( option_chains $interface ) { add_ijump( $filter_table->{$chain} , j => $target, p => 'tcp', imatch_source_net( $hostref->[2] ), @policy ); @@ -1289,7 +1290,7 @@ for my $hostref ( @$maclist_hosts ) { my $interface = $hostref->[0]; my $ipsec = $hostref->[1]; - my @policy = have_ipsec ? ( policy => "--pol $ipsec --dir in" ) : (); + my @policy = $ipsec && have_ipsec ? ( policy => "--pol $ipsec --dir in" ) : (); my @source = imatch_source_net $hostref->[2]; my @state = have_capability( 'RAW_TABLE' ) ? state_imatch 'NEW,UNTRACKED' : state_imatch 'NEW'; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/Perl/Shorewall/Zones.pm new/shorewall-4.6.3.3/Perl/Shorewall/Zones.pm --- old/shorewall-4.6.3.2/Perl/Shorewall/Zones.pm 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/Perl/Shorewall/Zones.pm 2014-09-12 05:58:39.000000000 +0200 @@ -2121,14 +2121,26 @@ sub find_hosts_by_option( $ ) { my $option = $_[0]; my @hosts; + my %done; + + for my $interface ( @interfaces ) { + my $value = $interfaces{$interface}{options}{$option}; + if ( ! $interfaces{$interface}{zone} && $value ) { + push @hosts, [ $interface, '', ALLIP , [], $value ]; + $done{$interface} = 1; + } + } for my $zone ( grep ! ( $zones{$_}{type} & FIREWALL ) , @zones ) { while ( my ($type, $interfaceref) = each %{$zones{$zone}{hosts}} ) { while ( my ( $interface, $arrayref) = ( each %{$interfaceref} ) ) { for my $host ( @{$arrayref} ) { - if ( my $value = $host->{options}{$option} ) { - for my $net ( @{$host->{hosts}} ) { - push @hosts, [ $interface, $host->{ipsec} , $net , $host->{exclusions}, $value ]; + my $ipsec = $host->{ipsec}; + unless ( $done{$interface} ) { + if ( my $value = $host->{options}{$option} ) { + for my $net ( @{$host->{hosts}} ) { + push @hosts, [ $interface, $ipsec , $net , $host->{exclusions}, $value ]; + } } } } @@ -2136,12 +2148,6 @@ } } - for my $interface ( @interfaces ) { - if ( ! $interfaces{$interface}{zone} && $interfaces{$interface}{options}{$option} ) { - push @hosts, [ $interface, 'none', ALLIP , [] ]; - } - } - \@hosts; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/changelog.txt new/shorewall-4.6.3.3/changelog.txt --- old/shorewall-4.6.3.2/changelog.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/changelog.txt 2014-09-12 05:58:39.000000000 +0200 @@ -2,6 +2,14 @@ 1) Update release documents +2) Re-enable SECTION PREROUTING in the accounting file + +3) Eliminate many superfluous rules for tcpflags, nosmurfs and maclist + +Changes in 4.6.3.2 + +1) Update release documents + 2) Document the Goto-Meeting macro. 3) Correct silly logic error diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/configure new/shorewall-4.6.3.3/configure --- old/shorewall-4.6.3.2/configure 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/configure 2014-09-12 05:58:39.000000000 +0200 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=4.6.3.2 +VERSION=4.6.3.3 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/configure.pl new/shorewall-4.6.3.3/configure.pl --- old/shorewall-4.6.3.2/configure.pl 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/configure.pl 2014-09-12 05:58:39.000000000 +0200 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '4.6.3.2' + VERSION => '4.6.3.3' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/install.sh new/shorewall-4.6.3.3/install.sh --- old/shorewall-4.6.3.2/install.sh 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/install.sh 2014-09-12 05:58:39.000000000 +0200 @@ -22,7 +22,7 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. # -VERSION=4.6.3.2 +VERSION=4.6.3.3 # # Change to the directory containing this script diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/known_problems.txt new/shorewall-4.6.3.3/known_problems.txt --- old/shorewall-4.6.3.2/known_problems.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/known_problems.txt 2014-09-12 05:58:39.000000000 +0200 @@ -36,5 +36,10 @@ Corrected in 4.6.3.2. +5) Including a PREROUTING SECTION in the accounting file + unconditionally results in a fatal error: + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + Corrected in 4.6.3.3. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-accounting.5 new/shorewall-4.6.3.3/manpages/shorewall-accounting.5 --- old/shorewall-4.6.3.2/manpages/shorewall-accounting.5 2014-09-02 22:01:31.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-accounting.5 2014-09-12 05:58:42.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-accounting .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ACCOUNTIN" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ACCOUNTIN" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-actions.5 new/shorewall-4.6.3.3/manpages/shorewall-actions.5 --- old/shorewall-4.6.3.2/manpages/shorewall-actions.5 2014-09-02 22:01:33.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-actions.5 2014-09-12 05:58:43.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-actions .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ACTIONS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ACTIONS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-arprules.5 new/shorewall-4.6.3.3/manpages/shorewall-arprules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-arprules.5 2014-09-02 22:01:34.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-arprules.5 2014-09-12 05:58:44.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-arprules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ARPRULES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ARPRULES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-blacklist.5 new/shorewall-4.6.3.3/manpages/shorewall-blacklist.5 --- old/shorewall-4.6.3.2/manpages/shorewall-blacklist.5 2014-09-02 22:01:36.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-blacklist.5 2014-09-12 05:58:46.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-blacklist .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-BLACKLIST" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-BLACKLIST" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-blrules.5 new/shorewall-4.6.3.3/manpages/shorewall-blrules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-blrules.5 2014-09-02 22:01:37.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-blrules.5 2014-09-12 05:58:47.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-blrules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-BLRULES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-BLRULES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-conntrack.5 new/shorewall-4.6.3.3/manpages/shorewall-conntrack.5 --- old/shorewall-4.6.3.2/manpages/shorewall-conntrack.5 2014-09-02 22:01:43.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-conntrack.5 2014-09-12 05:58:54.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall6-conntrack .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL6\-CONNTRAC" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL6\-CONNTRAC" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-ecn.5 new/shorewall-4.6.3.3/manpages/shorewall-ecn.5 --- old/shorewall-4.6.3.2/manpages/shorewall-ecn.5 2014-09-02 22:01:45.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-ecn.5 2014-09-12 05:58:55.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-ecn .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ECN" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ECN" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-exclusion.5 new/shorewall-4.6.3.3/manpages/shorewall-exclusion.5 --- old/shorewall-4.6.3.2/manpages/shorewall-exclusion.5 2014-09-02 22:01:46.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-exclusion.5 2014-09-12 05:58:57.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-exclusion .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-EXCLUSION" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-EXCLUSION" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-hosts.5 new/shorewall-4.6.3.3/manpages/shorewall-hosts.5 --- old/shorewall-4.6.3.2/manpages/shorewall-hosts.5 2014-09-02 22:01:47.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-hosts.5 2014-09-12 05:58:58.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-hosts .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-HOSTS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-HOSTS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-init.8 new/shorewall-4.6.3.3/manpages/shorewall-init.8 --- old/shorewall-4.6.3.2/manpages/shorewall-init.8 2014-09-02 22:01:49.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-init.8 2014-09-12 05:59:00.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-init .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Administrative Commands .\" Source: Administrative Commands .\" Language: English .\" -.TH "SHOREWALL\-INIT" "8" "09/02/2014" "Administrative Commands" "Administrative Commands" +.TH "SHOREWALL\-INIT" "8" "09/11/2014" "Administrative Commands" "Administrative Commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-interfaces.5 new/shorewall-4.6.3.3/manpages/shorewall-interfaces.5 --- old/shorewall-4.6.3.2/manpages/shorewall-interfaces.5 2014-09-02 22:01:50.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-interfaces.5 2014-09-12 05:59:01.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-interfaces .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-INTERFACE" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-INTERFACE" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-ipsets.5 new/shorewall-4.6.3.3/manpages/shorewall-ipsets.5 --- old/shorewall-4.6.3.2/manpages/shorewall-ipsets.5 2014-09-02 22:01:52.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-ipsets.5 2014-09-12 05:59:03.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-ipsets .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-IPSETS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-IPSETS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-maclist.5 new/shorewall-4.6.3.3/manpages/shorewall-maclist.5 --- old/shorewall-4.6.3.2/manpages/shorewall-maclist.5 2014-09-02 22:01:53.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-maclist.5 2014-09-12 05:59:04.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-maclist .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MACLIST" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MACLIST" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-mangle.5 new/shorewall-4.6.3.3/manpages/shorewall-mangle.5 --- old/shorewall-4.6.3.2/manpages/shorewall-mangle.5 2014-09-02 22:01:55.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-mangle.5 2014-09-12 05:59:06.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-mangle .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MANGLE" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MANGLE" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-masq.5 new/shorewall-4.6.3.3/manpages/shorewall-masq.5 --- old/shorewall-4.6.3.2/manpages/shorewall-masq.5 2014-09-02 22:01:57.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-masq.5 2014-09-12 05:59:08.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-masq .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MASQ" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MASQ" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-modules.5 new/shorewall-4.6.3.3/manpages/shorewall-modules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-modules.5 2014-09-02 22:01:58.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-modules.5 2014-09-12 05:59:09.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-modules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MODULES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MODULES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-nat.5 new/shorewall-4.6.3.3/manpages/shorewall-nat.5 --- old/shorewall-4.6.3.2/manpages/shorewall-nat.5 2014-09-02 22:01:59.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-nat.5 2014-09-12 05:59:10.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-nat .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-NAT" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-NAT" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-nesting.5 new/shorewall-4.6.3.3/manpages/shorewall-nesting.5 --- old/shorewall-4.6.3.2/manpages/shorewall-nesting.5 2014-09-02 22:02:01.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-nesting.5 2014-09-12 05:59:12.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-nesting .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-NESTING" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-NESTING" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-netmap.5 new/shorewall-4.6.3.3/manpages/shorewall-netmap.5 --- old/shorewall-4.6.3.2/manpages/shorewall-netmap.5 2014-09-02 22:02:02.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-netmap.5 2014-09-12 05:59:13.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-netmap .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-NETMAP" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-NETMAP" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-params.5 new/shorewall-4.6.3.3/manpages/shorewall-params.5 --- old/shorewall-4.6.3.2/manpages/shorewall-params.5 2014-09-02 22:02:03.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-params.5 2014-09-12 05:59:14.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-params .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-PARAMS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-PARAMS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-policy.5 new/shorewall-4.6.3.3/manpages/shorewall-policy.5 --- old/shorewall-4.6.3.2/manpages/shorewall-policy.5 2014-09-02 22:02:05.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-policy.5 2014-09-12 05:59:16.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-policy .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-POLICY" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-POLICY" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-providers.5 new/shorewall-4.6.3.3/manpages/shorewall-providers.5 --- old/shorewall-4.6.3.2/manpages/shorewall-providers.5 2014-09-02 22:02:06.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-providers.5 2014-09-12 05:59:17.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-providers .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-PROVIDERS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-PROVIDERS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-proxyarp.5 new/shorewall-4.6.3.3/manpages/shorewall-proxyarp.5 --- old/shorewall-4.6.3.2/manpages/shorewall-proxyarp.5 2014-09-02 22:02:07.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-proxyarp.5 2014-09-12 05:59:19.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-proxyarp .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-PROXYARP" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-PROXYARP" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-routes.5 new/shorewall-4.6.3.3/manpages/shorewall-routes.5 --- old/shorewall-4.6.3.2/manpages/shorewall-routes.5 2014-09-02 22:02:10.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-routes.5 2014-09-12 05:59:21.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-routes .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ROUTES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ROUTES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-routestopped.5 new/shorewall-4.6.3.3/manpages/shorewall-routestopped.5 --- old/shorewall-4.6.3.2/manpages/shorewall-routestopped.5 2014-09-02 22:02:09.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-routestopped.5 2014-09-12 05:59:20.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-routestopped .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ROUTESTOP" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ROUTESTOP" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-rtrules.5 new/shorewall-4.6.3.3/manpages/shorewall-rtrules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-rtrules.5 2014-09-02 22:02:11.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-rtrules.5 2014-09-12 05:59:23.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-rtrules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-RTRULES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-RTRULES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-rules.5 new/shorewall-4.6.3.3/manpages/shorewall-rules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-rules.5 2014-09-02 22:02:14.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-rules.5 2014-09-12 05:59:26.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-rules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-RULES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-RULES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-secmarks.5 new/shorewall-4.6.3.3/manpages/shorewall-secmarks.5 --- old/shorewall-4.6.3.2/manpages/shorewall-secmarks.5 2014-09-02 22:02:16.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-secmarks.5 2014-09-12 05:59:27.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-secmarks .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-SECMARKS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-SECMARKS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-stoppedrules.5 new/shorewall-4.6.3.3/manpages/shorewall-stoppedrules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-stoppedrules.5 2014-09-02 22:02:17.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-stoppedrules.5 2014-09-12 05:59:28.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-stoppedrules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-STOPPEDRU" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-STOPPEDRU" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tcclasses.5 new/shorewall-4.6.3.3/manpages/shorewall-tcclasses.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tcclasses.5 2014-09-02 22:02:18.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tcclasses.5 2014-09-12 05:59:30.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcclasses .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCCLASSES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCCLASSES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tcdevices.5 new/shorewall-4.6.3.3/manpages/shorewall-tcdevices.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tcdevices.5 2014-09-02 22:02:20.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tcdevices.5 2014-09-12 05:59:31.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcdevices .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCDEVICES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCDEVICES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tcfilters.5 new/shorewall-4.6.3.3/manpages/shorewall-tcfilters.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tcfilters.5 2014-09-02 22:02:21.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tcfilters.5 2014-09-12 05:59:33.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcfilters .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCFILTERS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCFILTERS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tcinterfaces.5 new/shorewall-4.6.3.3/manpages/shorewall-tcinterfaces.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tcinterfaces.5 2014-09-02 22:02:23.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tcinterfaces.5 2014-09-12 05:59:34.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcinterfaces .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCINTERFA" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCINTERFA" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tcpri.5 new/shorewall-4.6.3.3/manpages/shorewall-tcpri.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tcpri.5 2014-09-02 22:02:24.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tcpri.5 2014-09-12 05:59:36.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcpri .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCPRI" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCPRI" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tcrules.5 new/shorewall-4.6.3.3/manpages/shorewall-tcrules.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tcrules.5 2014-09-02 22:02:26.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tcrules.5 2014-09-12 05:59:38.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-mangle .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MANGLE" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MANGLE" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tos.5 new/shorewall-4.6.3.3/manpages/shorewall-tos.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tos.5 2014-09-02 22:02:27.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tos.5 2014-09-12 05:59:39.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tos .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TOS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TOS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-tunnels.5 new/shorewall-4.6.3.3/manpages/shorewall-tunnels.5 --- old/shorewall-4.6.3.2/manpages/shorewall-tunnels.5 2014-09-02 22:02:29.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-tunnels.5 2014-09-12 05:59:40.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-tunnels .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TUNNELS" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TUNNELS" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-vardir.5 new/shorewall-4.6.3.3/manpages/shorewall-vardir.5 --- old/shorewall-4.6.3.2/manpages/shorewall-vardir.5 2014-09-02 22:02:30.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-vardir.5 2014-09-12 05:59:42.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-vardir .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-VARDIR" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-VARDIR" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall-zones.5 new/shorewall-4.6.3.3/manpages/shorewall-zones.5 --- old/shorewall-4.6.3.2/manpages/shorewall-zones.5 2014-09-02 22:02:34.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall-zones.5 2014-09-12 05:59:46.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-zones .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ZONES" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ZONES" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall.8 new/shorewall-4.6.3.3/manpages/shorewall.8 --- old/shorewall-4.6.3.2/manpages/shorewall.8 2014-09-02 22:02:33.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall.8 2014-09-12 05:59:45.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Administrative Commands .\" Source: Administrative Commands .\" Language: English .\" -.TH "SHOREWALL" "8" "09/02/2014" "Administrative Commands" "Administrative Commands" +.TH "SHOREWALL" "8" "09/11/2014" "Administrative Commands" "Administrative Commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/manpages/shorewall.conf.5 new/shorewall-4.6.3.3/manpages/shorewall.conf.5 --- old/shorewall-4.6.3.2/manpages/shorewall.conf.5 2014-09-02 22:01:42.000000000 +0200 +++ new/shorewall-4.6.3.3/manpages/shorewall.conf.5 2014-09-12 05:58:52.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall.conf .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\&.CONF" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\&.CONF" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/releasenotes.txt new/shorewall-4.6.3.3/releasenotes.txt --- old/shorewall-4.6.3.2/releasenotes.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/releasenotes.txt 2014-09-12 05:58:39.000000000 +0200 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 4 . 6 . 3 . 2 + S H O R E W A L L 4 . 6 . 3 . 3 ------------------------------------ - S e p t e m b e r 0 3 , 2 0 1 4 + S e p t e m b e r 1 2 , 2 0 1 4 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,17 @@ 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.6.3.3 + +1) Including a PREROUTING SECTION in the accounting file + unconditionally resulted in a fatal error: + + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + +2) Previously, the compiler could generate many superfluous rules to + enforce the 'tcpflags', 'nosmurfs' and 'maclist' interface options. + 4.6.3.2 1) The shorewall[6]-actions manpages previously contained incorrect diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/shorewall.spec new/shorewall-4.6.3.3/shorewall.spec --- old/shorewall-4.6.3.2/shorewall.spec 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/shorewall.spec 2014-09-12 05:58:39.000000000 +0200 @@ -1,6 +1,6 @@ %define name shorewall %define version 4.6.3 -%define release 2 +%define release 3 Summary: Shoreline Firewall is an iptables-based firewall for Linux systems. Name: %{name} @@ -131,6 +131,8 @@ %doc COPYING INSTALL changelog.txt releasenotes.txt Contrib/* Samples %changelog +* Wed Sep 10 2014 Tom Eastep tom@shorewall.net +- Updated to 4.6.3-3 * Sat Aug 30 2014 Tom Eastep tom@shorewall.net - Updated to 4.6.3-2 * Thu Aug 21 2014 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-4.6.3.2/uninstall.sh new/shorewall-4.6.3.3/uninstall.sh --- old/shorewall-4.6.3.2/uninstall.sh 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-4.6.3.3/uninstall.sh 2014-09-12 05:58:39.000000000 +0200 @@ -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.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { ++++++ shorewall-core-4.6.3.2.tar.bz2 -> shorewall-core-4.6.3.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/changelog.txt new/shorewall-core-4.6.3.3/changelog.txt --- old/shorewall-core-4.6.3.2/changelog.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-core-4.6.3.3/changelog.txt 2014-09-12 05:58:39.000000000 +0200 @@ -2,6 +2,14 @@ 1) Update release documents +2) Re-enable SECTION PREROUTING in the accounting file + +3) Eliminate many superfluous rules for tcpflags, nosmurfs and maclist + +Changes in 4.6.3.2 + +1) Update release documents + 2) Document the Goto-Meeting macro. 3) Correct silly logic error diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/configure new/shorewall-core-4.6.3.3/configure --- old/shorewall-core-4.6.3.2/configure 2014-09-02 22:01:28.000000000 +0200 +++ new/shorewall-core-4.6.3.3/configure 2014-09-12 05:58:39.000000000 +0200 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=4.6.3.2 +VERSION=4.6.3.3 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/configure.pl new/shorewall-core-4.6.3.3/configure.pl --- old/shorewall-core-4.6.3.2/configure.pl 2014-09-02 22:01:28.000000000 +0200 +++ new/shorewall-core-4.6.3.3/configure.pl 2014-09-12 05:58:39.000000000 +0200 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '4.6.3.2' + VERSION => '4.6.3.3' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/install.sh new/shorewall-core-4.6.3.3/install.sh --- old/shorewall-core-4.6.3.2/install.sh 2014-09-02 22:01:28.000000000 +0200 +++ new/shorewall-core-4.6.3.3/install.sh 2014-09-12 05:58:39.000000000 +0200 @@ -22,7 +22,7 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. # -VERSION=4.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/known_problems.txt new/shorewall-core-4.6.3.3/known_problems.txt --- old/shorewall-core-4.6.3.2/known_problems.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-core-4.6.3.3/known_problems.txt 2014-09-12 05:58:39.000000000 +0200 @@ -36,5 +36,10 @@ Corrected in 4.6.3.2. +5) Including a PREROUTING SECTION in the accounting file + unconditionally results in a fatal error: + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + Corrected in 4.6.3.3. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/releasenotes.txt new/shorewall-core-4.6.3.3/releasenotes.txt --- old/shorewall-core-4.6.3.2/releasenotes.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-core-4.6.3.3/releasenotes.txt 2014-09-12 05:58:39.000000000 +0200 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 4 . 6 . 3 . 2 + S H O R E W A L L 4 . 6 . 3 . 3 ------------------------------------ - S e p t e m b e r 0 3 , 2 0 1 4 + S e p t e m b e r 1 2 , 2 0 1 4 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,17 @@ 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.6.3.3 + +1) Including a PREROUTING SECTION in the accounting file + unconditionally resulted in a fatal error: + + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + +2) Previously, the compiler could generate many superfluous rules to + enforce the 'tcpflags', 'nosmurfs' and 'maclist' interface options. + 4.6.3.2 1) The shorewall[6]-actions manpages previously contained incorrect diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/shorewall-core.spec new/shorewall-core-4.6.3.3/shorewall-core.spec --- old/shorewall-core-4.6.3.2/shorewall-core.spec 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-core-4.6.3.3/shorewall-core.spec 2014-09-12 05:58:39.000000000 +0200 @@ -1,6 +1,6 @@ %define name shorewall-core %define version 4.6.3 -%define release 2 +%define release 3 Summary: Shoreline Firewall is an iptables-based firewall for Linux systems. Name: %{name} @@ -62,6 +62,8 @@ %doc COPYING INSTALL changelog.txt releasenotes.txt %changelog +* Wed Sep 10 2014 Tom Eastep tom@shorewall.net +- Updated to 4.6.3-3 * Sat Aug 30 2014 Tom Eastep tom@shorewall.net - Updated to 4.6.3-2 * Thu Aug 21 2014 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-4.6.3.2/uninstall.sh new/shorewall-core-4.6.3.3/uninstall.sh --- old/shorewall-core-4.6.3.2/uninstall.sh 2014-09-02 22:01:28.000000000 +0200 +++ new/shorewall-core-4.6.3.3/uninstall.sh 2014-09-12 05:58:39.000000000 +0200 @@ -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.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { ++++++ shorewall-docs-html-4.6.3.2.tar.bz2 -> shorewall-docs-html-4.6.3.3.tar.bz2 ++++++ ++++ 6783 lines of diff (skipped) ++++++ shorewall-init-4.6.3.2.tar.bz2 -> shorewall-init-4.6.3.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/changelog.txt new/shorewall-init-4.6.3.3/changelog.txt --- old/shorewall-init-4.6.3.2/changelog.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/changelog.txt 2014-09-12 05:58:40.000000000 +0200 @@ -2,6 +2,14 @@ 1) Update release documents +2) Re-enable SECTION PREROUTING in the accounting file + +3) Eliminate many superfluous rules for tcpflags, nosmurfs and maclist + +Changes in 4.6.3.2 + +1) Update release documents + 2) Document the Goto-Meeting macro. 3) Correct silly logic error diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/configure new/shorewall-init-4.6.3.3/configure --- old/shorewall-init-4.6.3.2/configure 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/configure 2014-09-12 05:58:40.000000000 +0200 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=4.6.3.2 +VERSION=4.6.3.3 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/configure.pl new/shorewall-init-4.6.3.3/configure.pl --- old/shorewall-init-4.6.3.2/configure.pl 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/configure.pl 2014-09-12 05:58:40.000000000 +0200 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '4.6.3.2' + VERSION => '4.6.3.3' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/install.sh new/shorewall-init-4.6.3.3/install.sh --- old/shorewall-init-4.6.3.2/install.sh 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/install.sh 2014-09-12 05:58:40.000000000 +0200 @@ -27,7 +27,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -VERSION=4.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/releasenotes.txt new/shorewall-init-4.6.3.3/releasenotes.txt --- old/shorewall-init-4.6.3.2/releasenotes.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/releasenotes.txt 2014-09-12 05:58:40.000000000 +0200 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 4 . 6 . 3 . 2 + S H O R E W A L L 4 . 6 . 3 . 3 ------------------------------------ - S e p t e m b e r 0 3 , 2 0 1 4 + S e p t e m b e r 1 2 , 2 0 1 4 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,17 @@ 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.6.3.3 + +1) Including a PREROUTING SECTION in the accounting file + unconditionally resulted in a fatal error: + + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + +2) Previously, the compiler could generate many superfluous rules to + enforce the 'tcpflags', 'nosmurfs' and 'maclist' interface options. + 4.6.3.2 1) The shorewall[6]-actions manpages previously contained incorrect diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/shorewall-init.spec new/shorewall-init-4.6.3.3/shorewall-init.spec --- old/shorewall-init-4.6.3.2/shorewall-init.spec 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/shorewall-init.spec 2014-09-12 05:58:40.000000000 +0200 @@ -1,6 +1,6 @@ %define name shorewall-init %define version 4.6.3 -%define release 2 +%define release 3 Summary: Shorewall-init adds functionality to Shoreline Firewall (Shorewall). Name: %{name} @@ -125,6 +125,8 @@ %doc COPYING changelog.txt releasenotes.txt %changelog +* Wed Sep 10 2014 Tom Eastep tom@shorewall.net +- Updated to 4.6.3-3 * Sat Aug 30 2014 Tom Eastep tom@shorewall.net - Updated to 4.6.3-2 * Thu Aug 21 2014 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-4.6.3.2/uninstall.sh new/shorewall-init-4.6.3.3/uninstall.sh --- old/shorewall-init-4.6.3.2/uninstall.sh 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-init-4.6.3.3/uninstall.sh 2014-09-12 05:58:40.000000000 +0200 @@ -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.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { ++++++ shorewall-lite-4.6.3.2.tar.bz2 -> shorewall-lite-4.6.3.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/changelog.txt new/shorewall-lite-4.6.3.3/changelog.txt --- old/shorewall-lite-4.6.3.2/changelog.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/changelog.txt 2014-09-12 05:58:40.000000000 +0200 @@ -2,6 +2,14 @@ 1) Update release documents +2) Re-enable SECTION PREROUTING in the accounting file + +3) Eliminate many superfluous rules for tcpflags, nosmurfs and maclist + +Changes in 4.6.3.2 + +1) Update release documents + 2) Document the Goto-Meeting macro. 3) Correct silly logic error diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/configure new/shorewall-lite-4.6.3.3/configure --- old/shorewall-lite-4.6.3.2/configure 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/configure 2014-09-12 05:58:40.000000000 +0200 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=4.6.3.2 +VERSION=4.6.3.3 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/configure.pl new/shorewall-lite-4.6.3.3/configure.pl --- old/shorewall-lite-4.6.3.2/configure.pl 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/configure.pl 2014-09-12 05:58:40.000000000 +0200 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '4.6.3.2' + VERSION => '4.6.3.3' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/install.sh new/shorewall-lite-4.6.3.3/install.sh --- old/shorewall-lite-4.6.3.2/install.sh 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/install.sh 2014-09-12 05:58:40.000000000 +0200 @@ -22,7 +22,7 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. # -VERSION=4.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/manpages/shorewall-lite-vardir.5 new/shorewall-lite-4.6.3.3/manpages/shorewall-lite-vardir.5 --- old/shorewall-lite-4.6.3.2/manpages/shorewall-lite-vardir.5 2014-09-02 22:04:47.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/manpages/shorewall-lite-vardir.5 2014-09-12 06:02:01.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-lite-vardir .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-LITE\-VAR" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-LITE\-VAR" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/manpages/shorewall-lite.8 new/shorewall-lite-4.6.3.3/manpages/shorewall-lite.8 --- old/shorewall-lite-4.6.3.2/manpages/shorewall-lite.8 2014-09-02 22:04:48.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/manpages/shorewall-lite.8 2014-09-12 06:02:02.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-lite .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Administrative Commands .\" Source: Administrative Commands .\" Language: English .\" -.TH "SHOREWALL\-LITE" "8" "09/02/2014" "Administrative Commands" "Administrative Commands" +.TH "SHOREWALL\-LITE" "8" "09/11/2014" "Administrative Commands" "Administrative Commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/manpages/shorewall-lite.conf.5 new/shorewall-lite-4.6.3.3/manpages/shorewall-lite.conf.5 --- old/shorewall-lite-4.6.3.2/manpages/shorewall-lite.conf.5 2014-09-02 22:04:45.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/manpages/shorewall-lite.conf.5 2014-09-12 06:01:59.000000000 +0200 @@ -2,12 +2,12 @@ .\" Title: shorewall-lite.conf .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 09/02/2014 +.\" Date: 09/11/2014 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-LITE\&.CO" "5" "09/02/2014" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-LITE\&.CO" "5" "09/11/2014" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/releasenotes.txt new/shorewall-lite-4.6.3.3/releasenotes.txt --- old/shorewall-lite-4.6.3.2/releasenotes.txt 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/releasenotes.txt 2014-09-12 05:58:40.000000000 +0200 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 4 . 6 . 3 . 2 + S H O R E W A L L 4 . 6 . 3 . 3 ------------------------------------ - S e p t e m b e r 0 3 , 2 0 1 4 + S e p t e m b e r 1 2 , 2 0 1 4 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,17 @@ 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.6.3.3 + +1) Including a PREROUTING SECTION in the accounting file + unconditionally resulted in a fatal error: + + ERROR: The PREROUTING SECTION is not allowed when + ACCOUNTING_TABLE=filter + +2) Previously, the compiler could generate many superfluous rules to + enforce the 'tcpflags', 'nosmurfs' and 'maclist' interface options. + 4.6.3.2 1) The shorewall[6]-actions manpages previously contained incorrect diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/shorewall-lite.spec new/shorewall-lite-4.6.3.3/shorewall-lite.spec --- old/shorewall-lite-4.6.3.2/shorewall-lite.spec 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/shorewall-lite.spec 2014-09-12 05:58:40.000000000 +0200 @@ -1,6 +1,6 @@ %define name shorewall-lite %define version 4.6.3 -%define release 2 +%define release 3 %define initdir /etc/init.d Summary: Shoreline Firewall Lite is an iptables-based firewall for Linux systems. @@ -105,6 +105,8 @@ %doc COPYING changelog.txt releasenotes.txt %changelog +* Wed Sep 10 2014 Tom Eastep tom@shorewall.net +- Updated to 4.6.3-3 * Sat Aug 30 2014 Tom Eastep tom@shorewall.net - Updated to 4.6.3-2 * Thu Aug 21 2014 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-4.6.3.2/uninstall.sh new/shorewall-lite-4.6.3.3/uninstall.sh --- old/shorewall-lite-4.6.3.2/uninstall.sh 2014-09-02 22:01:29.000000000 +0200 +++ new/shorewall-lite-4.6.3.3/uninstall.sh 2014-09-12 05:58:40.000000000 +0200 @@ -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.6.3.2 +VERSION=4.6.3.3 usage() # $1 = exit status { ++++++ shorewall-4.6.3.2.tar.bz2 -> shorewall6-4.6.3.3.tar.bz2 ++++++ ++++ 125268 lines of diff (skipped) ++++++ shorewall-lite-4.6.3.2.tar.bz2 -> shorewall6-lite-4.6.3.3.tar.bz2 ++++++ ++++ 7527 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de