Resolve merge conflicts

This commit is contained in:
Tom Eastep 2011-05-19 15:10:22 -07:00
commit e9df13a42b
12 changed files with 12 additions and 21 deletions

View File

@ -23,7 +23,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# #
VERSION=4.4.20-Beta3 VERSION=4.4.20-Beta2
usage() # $1 = exit status usage() # $1 = exit status
{ {

View File

@ -1,6 +1,6 @@
%define name shorewall-init %define name shorewall-init
%define version 4.4.20 %define version 4.4.20
%define release 0Beta3 %define release 0Beta2
Summary: Shorewall-init adds functionality to Shoreline Firewall (Shorewall). Summary: Shorewall-init adds functionality to Shoreline Firewall (Shorewall).
Name: %{name} Name: %{name}
@ -120,8 +120,6 @@ fi
%changelog %changelog
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Wed May 18 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta3
* Wed May 18 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta2 - Updated to 4.4.20-0Beta2
* Sat Apr 16 2011 Tom Eastep tom@shorewall.net * Sat Apr 16 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.19-1 - Updated to 4.4.19-1

View File

@ -26,7 +26,7 @@
# You may only use this script to uninstall the version # You may only use this script to uninstall the version
# shown below. Simply run this script to remove Shorewall Firewall # shown below. Simply run this script to remove Shorewall Firewall
VERSION=4.4.20-Beta3 VERSION=4.4.20-Beta2
usage() # $1 = exit status usage() # $1 = exit status
{ {

View File

@ -103,7 +103,7 @@ fi
%doc COPYING changelog.txt releasenotes.txt %doc COPYING changelog.txt releasenotes.txt
%changelog %changelog
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Thu May 19 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta3 - Updated to 4.4.20-0Beta3
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Wed May 18 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta2 - Updated to 4.4.20-0Beta2

View File

@ -264,7 +264,6 @@ my %capdesc = ( NAT_ENABLED => 'NAT',
MARK_ANYWHERE => 'Mark in any table', MARK_ANYWHERE => 'Mark in any table',
HEADER_MATCH => 'Header Match', HEADER_MATCH => 'Header Match',
ACCOUNT_TARGET => 'ACCOUNT Target', ACCOUNT_TARGET => 'ACCOUNT Target',
AUDIT_TARGET => 'AUDIT Target',
CAPVERSION => 'Capability Version', CAPVERSION => 'Capability Version',
KERNELVERSION => 'Kernel Version', KERNELVERSION => 'Kernel Version',
); );
@ -419,8 +418,8 @@ sub initialize( $ ) {
EXPORT => 0, EXPORT => 0,
STATEMATCH => '-m state --state', STATEMATCH => '-m state --state',
UNTRACKED => 0, UNTRACKED => 0,
VERSION => "4.4.20-Beta3", VERSION => "4.4.20-Beta2",
CAPVERSION => 40420, CAPVERSION => 40417 ,
); );
# #
# From shorewall.conf file # From shorewall.conf file
@ -626,7 +625,6 @@ sub initialize( $ ) {
MARK_ANYWHERE => undef, MARK_ANYWHERE => undef,
HEADER_MATCH => undef, HEADER_MATCH => undef,
ACCOUNT_TARGET => undef, ACCOUNT_TARGET => undef,
AUDIT_TARGET => undef,
CAPVERSION => undef, CAPVERSION => undef,
KERNELVERSION => undef, KERNELVERSION => undef,
); );
@ -2539,8 +2537,8 @@ sub Audit_Target() {
our %detect_capability = our %detect_capability =
( ACCOUNT_TARGET =>\&Account_Target, ( ACCOUNT_TARGET =>\&Account_Target,
ADDRTYPE => \&Addrtype,
AUDIT_TARGET => \&Audit_Target, AUDIT_TARGET => \&Audit_Target,
ADDRTYPE => \&Addrtype,
CLASSIFY_TARGET => \&Classify_Target, CLASSIFY_TARGET => \&Classify_Target,
COMMENTS => \&Comments, COMMENTS => \&Comments,
CONNLIMIT_MATCH => \&Connlimit_Match, CONNLIMIT_MATCH => \&Connlimit_Match,

View File

@ -29,7 +29,7 @@
# #
SHOREWALL_LIBVERSION=40407 SHOREWALL_LIBVERSION=40407
SHOREWALL_CAPVERSION=40420 SHOREWALL_CAPVERSION=40417
[ -n "${VARDIR:=/var/lib/shorewall}" ] [ -n "${VARDIR:=/var/lib/shorewall}" ]
[ -n "${SHAREDIR:=/usr/share/shorewall}" ] [ -n "${SHAREDIR:=/usr/share/shorewall}" ]

View File

@ -1710,7 +1710,6 @@ determine_capabilities() {
MARK_ANYWHERE= MARK_ANYWHERE=
HEADER_MATCH= HEADER_MATCH=
ACCOUNT_TARGET= ACCOUNT_TARGET=
AUDIT_TARGET=
chain=fooX$$ chain=fooX$$
@ -1933,7 +1932,6 @@ report_capabilities() {
report_capability "Mark in any table" $MARK_ANYWHERE report_capability "Mark in any table" $MARK_ANYWHERE
report_capability "Header Match" $HEADER_MATCH report_capability "Header Match" $HEADER_MATCH
report_capability "ACCOUNT Target" $ACCOUNT_TARGET report_capability "ACCOUNT Target" $ACCOUNT_TARGET
report_capability "AUDIT Target" $AUDIT_TARGET
fi fi
[ -n "$PKTTYPE" ] || USEPKTTYPE= [ -n "$PKTTYPE" ] || USEPKTTYPE=
@ -2001,7 +1999,6 @@ report_capabilities1() {
report_capability1 MARK_ANYWHERE report_capability1 MARK_ANYWHERE
report_capability1 HEADER_MATCH report_capability1 HEADER_MATCH
report_capability1 ACCOUNT_TARGET report_capability1 ACCOUNT_TARGET
report_capability1 AUDIT_TARGET
echo CAPVERSION=$SHOREWALL_CAPVERSION echo CAPVERSION=$SHOREWALL_CAPVERSION
echo KERNELVERSION=$KERNELVERSION echo KERNELVERSION=$KERNELVERSION

View File

@ -109,7 +109,7 @@ fi
%doc COPYING INSTALL changelog.txt releasenotes.txt Contrib/* Samples %doc COPYING INSTALL changelog.txt releasenotes.txt Contrib/* Samples
%changelog %changelog
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Thu May 19 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta3 - Updated to 4.4.20-0Beta3
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Wed May 18 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta2 - Updated to 4.4.20-0Beta2

View File

@ -94,7 +94,7 @@ fi
%doc COPYING changelog.txt releasenotes.txt %doc COPYING changelog.txt releasenotes.txt
%changelog %changelog
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Thu May 19 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta3 - Updated to 4.4.20-0Beta3
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Wed May 18 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta2 - Updated to 4.4.20-0Beta2

View File

@ -33,7 +33,7 @@
# #
SHOREWALL_LIBVERSION=40407 SHOREWALL_LIBVERSION=40407
SHOREWALL_CAPVERSION=40420 SHOREWALL_CAPVERSION=40417
[ -n "${VARDIR:=/var/lib/shorewall6}" ] [ -n "${VARDIR:=/var/lib/shorewall6}" ]
[ -n "${SHAREDIR:=/usr/share/shorewall6}" ] [ -n "${SHAREDIR:=/usr/share/shorewall6}" ]

View File

@ -1573,7 +1573,6 @@ report_capabilities() {
report_capability "Mark in any table" $MARK_ANYWHERE report_capability "Mark in any table" $MARK_ANYWHERE
report_capability "Header Match" $HEADER_MATCH report_capability "Header Match" $HEADER_MATCH
report_capability "ACCOUNT Match" $ACCOUNT_TARGET report_capability "ACCOUNT Match" $ACCOUNT_TARGET
report_capability "AUDIT Match" $AUDIT_TARGET
fi fi
[ -n "$PKTTYPE" ] || USEPKTTYPE= [ -n "$PKTTYPE" ] || USEPKTTYPE=
@ -1638,7 +1637,6 @@ report_capabilities1() {
report_capability1 MARK_ANYWHERE report_capability1 MARK_ANYWHERE
report_capability1 HEADER_MATCH report_capability1 HEADER_MATCH
report_capability1 ACCOUNT_TARGET report_capability1 ACCOUNT_TARGET
report_capability1 AUDIT_TARGET
echo CAPVERSION=$SHOREWALL_CAPVERSION echo CAPVERSION=$SHOREWALL_CAPVERSION
echo KERNELVERSION=$KERNELVERSION echo KERNELVERSION=$KERNELVERSION

View File

@ -98,7 +98,7 @@ fi
%doc COPYING INSTALL changelog.txt releasenotes.txt tunnel ipsecvpn ipv6 Samples6 %doc COPYING INSTALL changelog.txt releasenotes.txt tunnel ipsecvpn ipv6 Samples6
%changelog %changelog
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Thu May 19 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta3 - Updated to 4.4.20-0Beta3
* Wed May 18 2011 Tom Eastep tom@shorewall.net * Wed May 18 2011 Tom Eastep tom@shorewall.net
- Updated to 4.4.20-0Beta2 - Updated to 4.4.20-0Beta2