commit shorewall for openSUSE:Factory
Hello community, here is the log from the commit of package shorewall for openSUSE:Factory checked in at 2017-03-28 15:22:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/shorewall (Old) and /work/SRC/openSUSE:Factory/.shorewall.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "shorewall" Tue Mar 28 15:22:54 2017 rev:95 rq:482804 version:5.1.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/shorewall/shorewall.changes 2017-03-20 17:13:19.861945846 +0100 +++ /work/SRC/openSUSE:Factory/.shorewall.new/shorewall.changes 2017-03-28 15:24:25.434857281 +0200 @@ -1,0 +2,15 @@ +Sat Mar 25 15:41:04 UTC 2017 - bruno@ioda-net.ch + +- Bugfix release 5.1.3.2 + Previously, if a Shorewall Variable (e.g., @chain) was the target + of a conditional ?RESET directive (one that was enclosed in ?if. + ?else...?endif logic), the compiler could incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. That has been corrected. + + Previously, if alternate input format specified a column that had + already been specified, the contents of that column were silently + overwritten. Now, a warning message is issued stating that the + prior value has been replaced by the newer value. + +------------------------------------------------------------------- @@ -4 +19 @@ -- Update to last bugfix version 5.3.1.1 +- Update to last bugfix version 5.1.3.1 Old: ---- shorewall-5.1.3.1.tar.bz2 shorewall-core-5.1.3.1.tar.bz2 shorewall-docs-html-5.1.3.1.tar.bz2 shorewall-init-5.1.3.1.tar.bz2 shorewall-lite-5.1.3.1.tar.bz2 shorewall6-5.1.3.1.tar.bz2 shorewall6-lite-5.1.3.1.tar.bz2 New: ---- shorewall-5.1.3.2.tar.bz2 shorewall-core-5.1.3.2.tar.bz2 shorewall-docs-html-5.1.3.2.tar.bz2 shorewall-init-5.1.3.2.tar.bz2 shorewall-lite-5.1.3.2.tar.bz2 shorewall6-5.1.3.2.tar.bz2 shorewall6-lite-5.1.3.2.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ shorewall.spec ++++++ --- /var/tmp/diff_new_pack.5cCrB0/_old 2017-03-28 15:24:26.642686228 +0200 +++ /var/tmp/diff_new_pack.5cCrB0/_new 2017-03-28 15:24:26.646685663 +0200 @@ -21,7 +21,7 @@ %define dmaj 5.1 %define dmin 5.1.3 Name: shorewall -Version: 5.1.3.1 +Version: 5.1.3.2 Release: 0 Summary: Shoreline Firewall is an iptables-based firewall for Linux systems License: GPL-2.0 ++++++ shorewall-5.1.3.1.tar.bz2 -> shorewall-5.1.3.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/Perl/Shorewall/Config.pm new/shorewall-5.1.3.2/Perl/Shorewall/Config.pm --- old/shorewall-5.1.3.1/Perl/Shorewall/Config.pm 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/Perl/Shorewall/Config.pm 2017-03-24 19:49:23.000000000 +0100 @@ -748,7 +748,7 @@ TC_SCRIPT => '', EXPORT => 0, KLUDGEFREE => '', - VERSION => "5.1.3.1", + VERSION => "5.1.3.2", CAPVERSION => 50100 , BLACKLIST_LOG_TAG => '', RELATED_LOG_TAG => '', @@ -2437,12 +2437,12 @@ } } else { fatal_error "Unknown column ($1)" unless exists $columnsref->{$column}; - $column = $columnsref->{$column}; - fatal_error "Non-ASCII gunk in file" if $columns =~ /[^\s[:print:]]/; $value = $1 if $value =~ /^"([^"]+)"$/; $value =~ s/\\"/"/g; - fatal_error "Non-ASCII gunk in the value of the $column column" if $columns =~ /[^\s[:print:]]/; - $line[$column] = $value; + fatal_error "Non-ASCII gunk in the value of the $column column" if $value =~ /[^\s[:print:]]/; + my $colnum = $columnsref->{$column}; + warning_message qq(Replacing "$line[$colnum]" with "$value" in the ) . uc( $column ) . ' column' if $line[$colnum] ne '-'; + $line[$colnum] = $value; } } } @@ -2962,10 +2962,11 @@ } else { delete $actparams{$var} } + + $parmsmodified = PARMSMODIFIED; } else { directive_warning( 'Yes', "Shorewall variable $2 does not exist", $filename, $linenumber ); } - } else { if ( exists $variables{$2} ) { delete $variables{$2}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/changelog.txt new/shorewall-5.1.3.2/changelog.txt --- old/shorewall-5.1.3.1/changelog.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/changelog.txt 2017-03-24 19:49:23.000000000 +0100 @@ -2,6 +2,14 @@ 1) Update release documents. +2) Set $parmsmodified on ?reset + +3) Clean up column/value pair editing. + +Changes in 5.1.3.1 + +1) Update release documents. + 2) Correct typo in BLACKLIST_DEFAULT settings 3) Fix 'add+' handling. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/configure new/shorewall-5.1.3.2/configure --- old/shorewall-5.1.3.1/configure 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/configure 2017-03-24 19:49:23.000000000 +0100 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=5.1.3.1 +VERSION=5.1.3.2 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/configure.pl new/shorewall-5.1.3.2/configure.pl --- old/shorewall-5.1.3.1/configure.pl 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/configure.pl 2017-03-24 19:49:23.000000000 +0100 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '5.1.3.1' + VERSION => '5.1.3.2' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/install.sh new/shorewall-5.1.3.2/install.sh --- old/shorewall-5.1.3.1/install.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/install.sh 2017-03-24 19:49:23.000000000 +0100 @@ -22,7 +22,7 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. # -VERSION=5.1.3.1 +VERSION=5.1.3.2 usage() # $1 = exit status { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/known_problems.txt new/shorewall-5.1.3.2/known_problems.txt --- old/shorewall-5.1.3.1/known_problems.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/known_problems.txt 2017-03-24 19:49:23.000000000 +0100 @@ -29,3 +29,17 @@ 5) In the policy file, all+ is incorrectly processed the same as all. Corrected in Shorewall 5.1.3.1. + +6) If a Shorewall Variable ( e.g., @chain ) is the target + of a conditional ?RESET directive (one that was enclosed in ?if... + ?else...?endif logic), the compiler can incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. + + Corrected in Shorewall 5.1.3.2. + +7) If alternate input format specifies a column that has + already been specified, the contents of that column are silently + overwritten. + + Corrected in Shorewall 5.1.3.2. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-accounting.5 new/shorewall-5.1.3.2/manpages/shorewall-accounting.5 --- old/shorewall-5.1.3.1/manpages/shorewall-accounting.5 2017-03-16 20:42:22.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-accounting.5 2017-03-24 19:49:24.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-accounting .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ACCOUNTIN" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ACCOUNTIN" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-actions.5 new/shorewall-5.1.3.2/manpages/shorewall-actions.5 --- old/shorewall-5.1.3.1/manpages/shorewall-actions.5 2017-03-16 20:42:23.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-actions.5 2017-03-24 19:49:25.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-actions .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ACTIONS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ACTIONS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-arprules.5 new/shorewall-5.1.3.2/manpages/shorewall-arprules.5 --- old/shorewall-5.1.3.1/manpages/shorewall-arprules.5 2017-03-16 20:42:23.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-arprules.5 2017-03-24 19:49:26.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-arprules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ARPRULES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ARPRULES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-blrules.5 new/shorewall-5.1.3.2/manpages/shorewall-blrules.5 --- old/shorewall-5.1.3.1/manpages/shorewall-blrules.5 2017-03-16 20:42:24.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-blrules.5 2017-03-24 19:49:26.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-blrules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-BLRULES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-BLRULES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-conntrack.5 new/shorewall-5.1.3.2/manpages/shorewall-conntrack.5 --- old/shorewall-5.1.3.1/manpages/shorewall-conntrack.5 2017-03-16 20:42:27.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-conntrack.5 2017-03-24 19:49:30.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall6-conntrack .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL6\-CONNTRAC" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL6\-CONNTRAC" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-ecn.5 new/shorewall-5.1.3.2/manpages/shorewall-ecn.5 --- old/shorewall-5.1.3.1/manpages/shorewall-ecn.5 2017-03-16 20:42:28.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-ecn.5 2017-03-24 19:49:31.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-ecn .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ECN" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ECN" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-exclusion.5 new/shorewall-5.1.3.2/manpages/shorewall-exclusion.5 --- old/shorewall-5.1.3.1/manpages/shorewall-exclusion.5 2017-03-16 20:42:28.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-exclusion.5 2017-03-24 19:49:31.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-exclusion .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-EXCLUSION" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-EXCLUSION" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-hosts.5 new/shorewall-5.1.3.2/manpages/shorewall-hosts.5 --- old/shorewall-5.1.3.1/manpages/shorewall-hosts.5 2017-03-16 20:42:29.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-hosts.5 2017-03-24 19:49:32.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-hosts .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-HOSTS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-HOSTS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-init.8 new/shorewall-5.1.3.2/manpages/shorewall-init.8 --- old/shorewall-5.1.3.1/manpages/shorewall-init.8 2017-03-16 20:42:29.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-init.8 2017-03-24 19:49:33.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-init .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Administrative Commands .\" Source: Administrative Commands .\" Language: English .\" -.TH "SHOREWALL\-INIT" "8" "03/16/2017" "Administrative Commands" "Administrative Commands" +.TH "SHOREWALL\-INIT" "8" "03/24/2017" "Administrative Commands" "Administrative Commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-interfaces.5 new/shorewall-5.1.3.2/manpages/shorewall-interfaces.5 --- old/shorewall-5.1.3.1/manpages/shorewall-interfaces.5 2017-03-16 20:42:30.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-interfaces.5 2017-03-24 19:49:34.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-interfaces .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-INTERFACE" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-INTERFACE" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-ipsets.5 new/shorewall-5.1.3.2/manpages/shorewall-ipsets.5 --- old/shorewall-5.1.3.1/manpages/shorewall-ipsets.5 2017-03-16 20:42:31.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-ipsets.5 2017-03-24 19:49:34.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-ipsets .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-IPSETS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-IPSETS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-maclist.5 new/shorewall-5.1.3.2/manpages/shorewall-maclist.5 --- old/shorewall-5.1.3.1/manpages/shorewall-maclist.5 2017-03-16 20:42:31.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-maclist.5 2017-03-24 19:49:35.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-maclist .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MACLIST" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MACLIST" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-mangle.5 new/shorewall-5.1.3.2/manpages/shorewall-mangle.5 --- old/shorewall-5.1.3.1/manpages/shorewall-mangle.5 2017-03-16 20:42:32.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-mangle.5 2017-03-24 19:49:36.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-mangle .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MANGLE" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MANGLE" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-masq.5 new/shorewall-5.1.3.2/manpages/shorewall-masq.5 --- old/shorewall-5.1.3.1/manpages/shorewall-masq.5 2017-03-16 20:42:33.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-masq.5 2017-03-24 19:49:37.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-masq .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MASQ" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MASQ" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-modules.5 new/shorewall-5.1.3.2/manpages/shorewall-modules.5 --- old/shorewall-5.1.3.1/manpages/shorewall-modules.5 2017-03-16 20:42:34.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-modules.5 2017-03-24 19:49:37.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-modules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-MODULES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-MODULES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-nat.5 new/shorewall-5.1.3.2/manpages/shorewall-nat.5 --- old/shorewall-5.1.3.1/manpages/shorewall-nat.5 2017-03-16 20:42:34.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-nat.5 2017-03-24 19:49:38.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-nat .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-NAT" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-NAT" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-nesting.5 new/shorewall-5.1.3.2/manpages/shorewall-nesting.5 --- old/shorewall-5.1.3.1/manpages/shorewall-nesting.5 2017-03-16 20:42:35.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-nesting.5 2017-03-24 19:49:39.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-nesting .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-NESTING" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-NESTING" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-netmap.5 new/shorewall-5.1.3.2/manpages/shorewall-netmap.5 --- old/shorewall-5.1.3.1/manpages/shorewall-netmap.5 2017-03-16 20:42:36.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-netmap.5 2017-03-24 19:49:39.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-netmap .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-NETMAP" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-NETMAP" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-params.5 new/shorewall-5.1.3.2/manpages/shorewall-params.5 --- old/shorewall-5.1.3.1/manpages/shorewall-params.5 2017-03-16 20:42:36.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-params.5 2017-03-24 19:49:40.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-params .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-PARAMS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-PARAMS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-policy.5 new/shorewall-5.1.3.2/manpages/shorewall-policy.5 --- old/shorewall-5.1.3.1/manpages/shorewall-policy.5 2017-03-16 20:42:37.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-policy.5 2017-03-24 19:49:40.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-policy .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-POLICY" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-POLICY" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-providers.5 new/shorewall-5.1.3.2/manpages/shorewall-providers.5 --- old/shorewall-5.1.3.1/manpages/shorewall-providers.5 2017-03-16 20:42:37.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-providers.5 2017-03-24 19:49:41.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-providers .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-PROVIDERS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-PROVIDERS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-proxyarp.5 new/shorewall-5.1.3.2/manpages/shorewall-proxyarp.5 --- old/shorewall-5.1.3.1/manpages/shorewall-proxyarp.5 2017-03-16 20:42:38.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-proxyarp.5 2017-03-24 19:49:42.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-proxyarp .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-PROXYARP" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-PROXYARP" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-routes.5 new/shorewall-5.1.3.2/manpages/shorewall-routes.5 --- old/shorewall-5.1.3.1/manpages/shorewall-routes.5 2017-03-16 20:42:39.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-routes.5 2017-03-24 19:49:42.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-routes .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ROUTES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ROUTES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-rtrules.5 new/shorewall-5.1.3.2/manpages/shorewall-rtrules.5 --- old/shorewall-5.1.3.1/manpages/shorewall-rtrules.5 2017-03-16 20:42:39.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-rtrules.5 2017-03-24 19:49:43.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-rtrules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-RTRULES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-RTRULES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-rules.5 new/shorewall-5.1.3.2/manpages/shorewall-rules.5 --- old/shorewall-5.1.3.1/manpages/shorewall-rules.5 2017-03-16 20:42:40.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-rules.5 2017-03-24 19:49:45.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-rules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-RULES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-RULES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-secmarks.5 new/shorewall-5.1.3.2/manpages/shorewall-secmarks.5 --- old/shorewall-5.1.3.1/manpages/shorewall-secmarks.5 2017-03-16 20:42:41.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-secmarks.5 2017-03-24 19:49:45.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-secmarks .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-SECMARKS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-SECMARKS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-snat.5 new/shorewall-5.1.3.2/manpages/shorewall-snat.5 --- old/shorewall-5.1.3.1/manpages/shorewall-snat.5 2017-03-16 20:42:42.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-snat.5 2017-03-24 19:49:46.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-snat .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-SNAT" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-SNAT" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-stoppedrules.5 new/shorewall-5.1.3.2/manpages/shorewall-stoppedrules.5 --- old/shorewall-5.1.3.1/manpages/shorewall-stoppedrules.5 2017-03-16 20:42:42.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-stoppedrules.5 2017-03-24 19:49:47.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-stoppedrules .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-STOPPEDRU" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-STOPPEDRU" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-tcclasses.5 new/shorewall-5.1.3.2/manpages/shorewall-tcclasses.5 --- old/shorewall-5.1.3.1/manpages/shorewall-tcclasses.5 2017-03-16 20:42:43.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-tcclasses.5 2017-03-24 19:49:47.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcclasses .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCCLASSES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCCLASSES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-tcdevices.5 new/shorewall-5.1.3.2/manpages/shorewall-tcdevices.5 --- old/shorewall-5.1.3.1/manpages/shorewall-tcdevices.5 2017-03-16 20:42:43.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-tcdevices.5 2017-03-24 19:49:48.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcdevices .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCDEVICES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCDEVICES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-tcfilters.5 new/shorewall-5.1.3.2/manpages/shorewall-tcfilters.5 --- old/shorewall-5.1.3.1/manpages/shorewall-tcfilters.5 2017-03-16 20:42:44.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-tcfilters.5 2017-03-24 19:49:49.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcfilters .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCFILTERS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCFILTERS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-tcinterfaces.5 new/shorewall-5.1.3.2/manpages/shorewall-tcinterfaces.5 --- old/shorewall-5.1.3.1/manpages/shorewall-tcinterfaces.5 2017-03-16 20:42:44.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-tcinterfaces.5 2017-03-24 19:49:49.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcinterfaces .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCINTERFA" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCINTERFA" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-tcpri.5 new/shorewall-5.1.3.2/manpages/shorewall-tcpri.5 --- old/shorewall-5.1.3.1/manpages/shorewall-tcpri.5 2017-03-16 20:42:45.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-tcpri.5 2017-03-24 19:49:50.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-tcpri .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TCPRI" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TCPRI" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-tunnels.5 new/shorewall-5.1.3.2/manpages/shorewall-tunnels.5 --- old/shorewall-5.1.3.1/manpages/shorewall-tunnels.5 2017-03-16 20:42:45.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-tunnels.5 2017-03-24 19:49:51.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-tunnels .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-TUNNELS" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-TUNNELS" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-vardir.5 new/shorewall-5.1.3.2/manpages/shorewall-vardir.5 --- old/shorewall-5.1.3.1/manpages/shorewall-vardir.5 2017-03-16 20:42:46.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-vardir.5 2017-03-24 19:49:51.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-vardir .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-VARDIR" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-VARDIR" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall-zones.5 new/shorewall-5.1.3.2/manpages/shorewall-zones.5 --- old/shorewall-5.1.3.1/manpages/shorewall-zones.5 2017-03-16 20:42:47.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall-zones.5 2017-03-24 19:49:52.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-zones .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-ZONES" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-ZONES" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/manpages/shorewall.conf.5 new/shorewall-5.1.3.2/manpages/shorewall.conf.5 --- old/shorewall-5.1.3.1/manpages/shorewall.conf.5 2017-03-16 20:42:26.000000000 +0100 +++ new/shorewall-5.1.3.2/manpages/shorewall.conf.5 2017-03-24 19:49:29.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall.conf .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\&.CONF" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\&.CONF" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/releasenotes.txt new/shorewall-5.1.3.2/releasenotes.txt --- old/shorewall-5.1.3.1/releasenotes.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/releasenotes.txt 2017-03-24 19:49:23.000000000 +0100 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 5 . 1 . 3 . 1 + S H O R E W A L L 5 . 1 . 3 . 2 ----------------------------- - M a r c h 1 7 , 2 0 1 7 + M a r c h 2 5 , 2 0 1 7 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,20 @@ 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 ---------------------------------------------------------------------------- +5.1.3.2 + +1) Previously, if a Shorewall Variable ( e.g., @chain ) was the target + of a conditional ?RESET directive (one that was enclosed in ?if... + ?else...?endif logic), the compiler could incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. That has been corrected. + +2) Previously, if alternate input format specified a column that had + already been specified, the contents of that column were silently + overwritten. Now, a warning message is issued stating that the + prior value has been replaced by the newer value. + + 5.1.3.1 1) There was a typo in the BLACKLIST_DEFAULT settings in the 5.1.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/shorewall.spec new/shorewall-5.1.3.2/shorewall.spec --- old/shorewall-5.1.3.1/shorewall.spec 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/shorewall.spec 2017-03-24 19:49:23.000000000 +0100 @@ -1,6 +1,6 @@ %define name shorewall %define version 5.1.3 -%define release 1 +%define release 2 Summary: Shoreline Firewall is an iptables-based firewall for Linux systems. Name: %{name} @@ -160,6 +160,8 @@ %doc COPYING INSTALL changelog.txt releasenotes.txt Samples %changelog +* Wed Mar 22 2017 Tom Eastep tom@shorewall.net +- Updated to 5.1.3-2 * Wed Mar 15 2017 Tom Eastep tom@shorewall.net - Updated to 5.1.3-1 * Mon Mar 13 2017 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-5.1.3.1/uninstall.sh new/shorewall-5.1.3.2/uninstall.sh --- old/shorewall-5.1.3.1/uninstall.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-5.1.3.2/uninstall.sh 2017-03-24 19:49:23.000000000 +0100 @@ -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=5.1.3.1 +VERSION=5.1.3.2 usage() # $1 = exit status { ++++++ shorewall-core-5.1.3.1.tar.bz2 -> shorewall-core-5.1.3.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/changelog.txt new/shorewall-core-5.1.3.2/changelog.txt --- old/shorewall-core-5.1.3.1/changelog.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/changelog.txt 2017-03-24 19:49:23.000000000 +0100 @@ -2,6 +2,14 @@ 1) Update release documents. +2) Set $parmsmodified on ?reset + +3) Clean up column/value pair editing. + +Changes in 5.1.3.1 + +1) Update release documents. + 2) Correct typo in BLACKLIST_DEFAULT settings 3) Fix 'add+' handling. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/configure new/shorewall-core-5.1.3.2/configure --- old/shorewall-core-5.1.3.1/configure 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/configure 2017-03-24 19:49:23.000000000 +0100 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=5.1.3.1 +VERSION=5.1.3.2 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/configure.pl new/shorewall-core-5.1.3.2/configure.pl --- old/shorewall-core-5.1.3.1/configure.pl 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/configure.pl 2017-03-24 19:49:23.000000000 +0100 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '5.1.3.1' + VERSION => '5.1.3.2' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/install.sh new/shorewall-core-5.1.3.2/install.sh --- old/shorewall-core-5.1.3.1/install.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/install.sh 2017-03-24 19:49:23.000000000 +0100 @@ -22,7 +22,7 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. # -VERSION=5.1.3.1 +VERSION=5.1.3.2 PRODUCT=shorewall-core Product="Shorewall Core" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/known_problems.txt new/shorewall-core-5.1.3.2/known_problems.txt --- old/shorewall-core-5.1.3.1/known_problems.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/known_problems.txt 2017-03-24 19:49:23.000000000 +0100 @@ -29,3 +29,17 @@ 5) In the policy file, all+ is incorrectly processed the same as all. Corrected in Shorewall 5.1.3.1. + +6) If a Shorewall Variable ( e.g., @chain ) is the target + of a conditional ?RESET directive (one that was enclosed in ?if... + ?else...?endif logic), the compiler can incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. + + Corrected in Shorewall 5.1.3.2. + +7) If alternate input format specifies a column that has + already been specified, the contents of that column are silently + overwritten. + + Corrected in Shorewall 5.1.3.2. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/manpages/shorewall.8 new/shorewall-core-5.1.3.2/manpages/shorewall.8 --- old/shorewall-core-5.1.3.1/manpages/shorewall.8 2017-03-16 20:43:50.000000000 +0100 +++ new/shorewall-core-5.1.3.2/manpages/shorewall.8 2017-03-24 19:51:09.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Administrative Commands .\" Source: Administrative Commands .\" Language: English .\" -.TH "SHOREWALL" "8" "03/16/2017" "Administrative Commands" "Administrative Commands" +.TH "SHOREWALL" "8" "03/24/2017" "Administrative Commands" "Administrative Commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/releasenotes.txt new/shorewall-core-5.1.3.2/releasenotes.txt --- old/shorewall-core-5.1.3.1/releasenotes.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/releasenotes.txt 2017-03-24 19:49:23.000000000 +0100 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 5 . 1 . 3 . 1 + S H O R E W A L L 5 . 1 . 3 . 2 ----------------------------- - M a r c h 1 7 , 2 0 1 7 + M a r c h 2 5 , 2 0 1 7 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,20 @@ 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 ---------------------------------------------------------------------------- +5.1.3.2 + +1) Previously, if a Shorewall Variable ( e.g., @chain ) was the target + of a conditional ?RESET directive (one that was enclosed in ?if... + ?else...?endif logic), the compiler could incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. That has been corrected. + +2) Previously, if alternate input format specified a column that had + already been specified, the contents of that column were silently + overwritten. Now, a warning message is issued stating that the + prior value has been replaced by the newer value. + + 5.1.3.1 1) There was a typo in the BLACKLIST_DEFAULT settings in the 5.1.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/shorewall-core.spec new/shorewall-core-5.1.3.2/shorewall-core.spec --- old/shorewall-core-5.1.3.1/shorewall-core.spec 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/shorewall-core.spec 2017-03-24 19:49:23.000000000 +0100 @@ -1,6 +1,6 @@ %define name shorewall-core %define version 5.1.3 -%define release 1 +%define release 2 Summary: Shoreline Firewall is an iptables-based firewall for Linux systems. Name: %{name} @@ -69,6 +69,8 @@ %doc COPYING INSTALL changelog.txt releasenotes.txt %changelog +* Wed Mar 22 2017 Tom Eastep tom@shorewall.net +- Updated to 5.1.3-2 * Wed Mar 15 2017 Tom Eastep tom@shorewall.net - Updated to 5.1.3-1 * Mon Mar 13 2017 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-core-5.1.3.1/uninstall.sh new/shorewall-core-5.1.3.2/uninstall.sh --- old/shorewall-core-5.1.3.1/uninstall.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-core-5.1.3.2/uninstall.sh 2017-03-24 19:49:23.000000000 +0100 @@ -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=5.1.3.1 +VERSION=5.1.3.2 PRODUCT=shorewall-core Product="Shorewall Core" ++++++ shorewall-docs-html-5.1.3.1.tar.bz2 -> shorewall-docs-html-5.1.3.2.tar.bz2 ++++++ ++++ 6678 lines of diff (skipped) ++++++ shorewall-init-5.1.3.1.tar.bz2 -> shorewall-init-5.1.3.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/changelog.txt new/shorewall-init-5.1.3.2/changelog.txt --- old/shorewall-init-5.1.3.1/changelog.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/changelog.txt 2017-03-24 19:49:23.000000000 +0100 @@ -2,6 +2,14 @@ 1) Update release documents. +2) Set $parmsmodified on ?reset + +3) Clean up column/value pair editing. + +Changes in 5.1.3.1 + +1) Update release documents. + 2) Correct typo in BLACKLIST_DEFAULT settings 3) Fix 'add+' handling. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/configure new/shorewall-init-5.1.3.2/configure --- old/shorewall-init-5.1.3.1/configure 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/configure 2017-03-24 19:49:23.000000000 +0100 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=5.1.3.1 +VERSION=5.1.3.2 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/configure.pl new/shorewall-init-5.1.3.2/configure.pl --- old/shorewall-init-5.1.3.1/configure.pl 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/configure.pl 2017-03-24 19:49:23.000000000 +0100 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '5.1.3.1' + VERSION => '5.1.3.2' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/install.sh new/shorewall-init-5.1.3.2/install.sh --- old/shorewall-init-5.1.3.1/install.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/install.sh 2017-03-24 19:49:23.000000000 +0100 @@ -27,7 +27,7 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -VERSION=5.1.3.1 +VERSION=5.1.3.2 PRODUCT=shorewall-init Product="Shorewall Init" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/releasenotes.txt new/shorewall-init-5.1.3.2/releasenotes.txt --- old/shorewall-init-5.1.3.1/releasenotes.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/releasenotes.txt 2017-03-24 19:49:23.000000000 +0100 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 5 . 1 . 3 . 1 + S H O R E W A L L 5 . 1 . 3 . 2 ----------------------------- - M a r c h 1 7 , 2 0 1 7 + M a r c h 2 5 , 2 0 1 7 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,20 @@ 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 ---------------------------------------------------------------------------- +5.1.3.2 + +1) Previously, if a Shorewall Variable ( e.g., @chain ) was the target + of a conditional ?RESET directive (one that was enclosed in ?if... + ?else...?endif logic), the compiler could incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. That has been corrected. + +2) Previously, if alternate input format specified a column that had + already been specified, the contents of that column were silently + overwritten. Now, a warning message is issued stating that the + prior value has been replaced by the newer value. + + 5.1.3.1 1) There was a typo in the BLACKLIST_DEFAULT settings in the 5.1.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/shorewall-init.spec new/shorewall-init-5.1.3.2/shorewall-init.spec --- old/shorewall-init-5.1.3.1/shorewall-init.spec 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/shorewall-init.spec 2017-03-24 19:49:23.000000000 +0100 @@ -1,6 +1,6 @@ %define name shorewall-init %define version 5.1.3 -%define release 1 +%define release 2 Summary: Shorewall-init adds functionality to Shoreline Firewall (Shorewall). Name: %{name} @@ -135,6 +135,8 @@ %doc COPYING changelog.txt releasenotes.txt %changelog +* Wed Mar 22 2017 Tom Eastep tom@shorewall.net +- Updated to 5.1.3-2 * Wed Mar 15 2017 Tom Eastep tom@shorewall.net - Updated to 5.1.3-1 * Mon Mar 13 2017 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-init-5.1.3.1/uninstall.sh new/shorewall-init-5.1.3.2/uninstall.sh --- old/shorewall-init-5.1.3.1/uninstall.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-init-5.1.3.2/uninstall.sh 2017-03-24 19:49:23.000000000 +0100 @@ -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=5.1.3.1 +VERSION=5.1.3.2 PRODUCT=shorewall-init Product="Shorewall Init" ++++++ shorewall-lite-5.1.3.1.tar.bz2 -> shorewall-lite-5.1.3.2.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/changelog.txt new/shorewall-lite-5.1.3.2/changelog.txt --- old/shorewall-lite-5.1.3.1/changelog.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/changelog.txt 2017-03-24 19:49:23.000000000 +0100 @@ -2,6 +2,14 @@ 1) Update release documents. +2) Set $parmsmodified on ?reset + +3) Clean up column/value pair editing. + +Changes in 5.1.3.1 + +1) Update release documents. + 2) Correct typo in BLACKLIST_DEFAULT settings 3) Fix 'add+' handling. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/configure new/shorewall-lite-5.1.3.2/configure --- old/shorewall-lite-5.1.3.1/configure 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/configure 2017-03-24 19:49:23.000000000 +0100 @@ -28,7 +28,7 @@ # # Build updates this # -VERSION=5.1.3.1 +VERSION=5.1.3.2 case "$BASH_VERSION" in [4-9].*) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/configure.pl new/shorewall-lite-5.1.3.2/configure.pl --- old/shorewall-lite-5.1.3.1/configure.pl 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/configure.pl 2017-03-24 19:49:23.000000000 +0100 @@ -31,7 +31,7 @@ # Build updates this # use constant { - VERSION => '5.1.3.1' + VERSION => '5.1.3.2' }; my %params; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/install.sh new/shorewall-lite-5.1.3.2/install.sh --- old/shorewall-lite-5.1.3.1/install.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/install.sh 2017-03-24 19:49:23.000000000 +0100 @@ -22,7 +22,7 @@ # along with this program; if not, see <http://www.gnu.org/licenses/>. # -VERSION=5.1.3.1 +VERSION=5.1.3.2 usage() # $1 = exit status { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/manpages/shorewall-lite-vardir.5 new/shorewall-lite-5.1.3.2/manpages/shorewall-lite-vardir.5 --- old/shorewall-lite-5.1.3.1/manpages/shorewall-lite-vardir.5 2017-03-16 20:43:44.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/manpages/shorewall-lite-vardir.5 2017-03-24 19:51:02.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-lite-vardir .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-LITE\-VAR" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-LITE\-VAR" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/manpages/shorewall-lite.8 new/shorewall-lite-5.1.3.2/manpages/shorewall-lite.8 --- old/shorewall-lite-5.1.3.1/manpages/shorewall-lite.8 2017-03-16 20:43:44.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/manpages/shorewall-lite.8 2017-03-24 19:51:02.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-lite .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Administrative Commands .\" Source: Administrative Commands .\" Language: English .\" -.TH "SHOREWALL\-LITE" "8" "03/16/2017" "Administrative Commands" "Administrative Commands" +.TH "SHOREWALL\-LITE" "8" "03/24/2017" "Administrative Commands" "Administrative Commands" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/manpages/shorewall-lite.conf.5 new/shorewall-lite-5.1.3.2/manpages/shorewall-lite.conf.5 --- old/shorewall-lite-5.1.3.1/manpages/shorewall-lite.conf.5 2017-03-16 20:43:43.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/manpages/shorewall-lite.conf.5 2017-03-24 19:51:01.000000000 +0100 @@ -2,12 +2,12 @@ .\" Title: shorewall-lite.conf .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/> -.\" Date: 03/16/2017 +.\" Date: 03/24/2017 .\" Manual: Configuration Files .\" Source: Configuration Files .\" Language: English .\" -.TH "SHOREWALL\-LITE\&.CO" "5" "03/16/2017" "Configuration Files" "Configuration Files" +.TH "SHOREWALL\-LITE\&.CO" "5" "03/24/2017" "Configuration Files" "Configuration Files" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/releasenotes.txt new/shorewall-lite-5.1.3.2/releasenotes.txt --- old/shorewall-lite-5.1.3.1/releasenotes.txt 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/releasenotes.txt 2017-03-24 19:49:23.000000000 +0100 @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- - S H O R E W A L L 5 . 1 . 3 . 1 + S H O R E W A L L 5 . 1 . 3 . 2 ----------------------------- - M a r c h 1 7 , 2 0 1 7 + M a r c h 2 5 , 2 0 1 7 ---------------------------------------------------------------------------- I. PROBLEMS CORRECTED IN THIS RELEASE @@ -14,6 +14,20 @@ 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 ---------------------------------------------------------------------------- +5.1.3.2 + +1) Previously, if a Shorewall Variable ( e.g., @chain ) was the target + of a conditional ?RESET directive (one that was enclosed in ?if... + ?else...?endif logic), the compiler could incorrectly use an + existing chain created from the action rather than creating a new + (and different) chain. That has been corrected. + +2) Previously, if alternate input format specified a column that had + already been specified, the contents of that column were silently + overwritten. Now, a warning message is issued stating that the + prior value has been replaced by the newer value. + + 5.1.3.1 1) There was a typo in the BLACKLIST_DEFAULT settings in the 5.1.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/shorewall-lite.spec new/shorewall-lite-5.1.3.2/shorewall-lite.spec --- old/shorewall-lite-5.1.3.1/shorewall-lite.spec 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/shorewall-lite.spec 2017-03-24 19:49:23.000000000 +0100 @@ -1,6 +1,6 @@ %define name shorewall-lite %define version 5.1.3 -%define release 1 +%define release 2 %define initdir /etc/init.d Summary: Shoreline Firewall Lite is an iptables-based firewall for Linux systems. @@ -115,6 +115,8 @@ %doc COPYING changelog.txt releasenotes.txt %changelog +* Wed Mar 22 2017 Tom Eastep tom@shorewall.net +- Updated to 5.1.3-2 * Wed Mar 15 2017 Tom Eastep tom@shorewall.net - Updated to 5.1.3-1 * Mon Mar 13 2017 Tom Eastep tom@shorewall.net diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shorewall-lite-5.1.3.1/uninstall.sh new/shorewall-lite-5.1.3.2/uninstall.sh --- old/shorewall-lite-5.1.3.1/uninstall.sh 2017-03-16 20:42:21.000000000 +0100 +++ new/shorewall-lite-5.1.3.2/uninstall.sh 2017-03-24 19:49:23.000000000 +0100 @@ -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=5.1.3.1 +VERSION=5.1.3.2 usage() # $1 = exit status { ++++++ shorewall-5.1.3.1.tar.bz2 -> shorewall6-5.1.3.2.tar.bz2 ++++++ ++++ 131917 lines of diff (skipped) ++++++ shorewall-lite-5.1.3.1.tar.bz2 -> shorewall6-lite-5.1.3.2.tar.bz2 ++++++ ++++ 2941 lines of diff (skipped)
participants (1)
-
root@hilbert.suse.de