mirror of
https://gitlab.com/shorewall/code.git
synced 2025-06-25 04:01:45 +02:00
Update Version
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6541 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
20ab9d7cfa
commit
09dd725a3c
@ -28,7 +28,7 @@
|
|||||||
# shown below. Simply run this script to revert to your prior version of
|
# shown below. Simply run this script to revert to your prior version of
|
||||||
# Shoreline Firewall.
|
# Shoreline Firewall.
|
||||||
|
|
||||||
VERSION=4.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=4.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -28,11 +28,14 @@ Problems corrected in 4.0.0 Beta 5.
|
|||||||
2) 'shorewall dump', 'shorewall show log' and 'shorewall logwatch'
|
2) 'shorewall dump', 'shorewall show log' and 'shorewall logwatch'
|
||||||
work again.
|
work again.
|
||||||
|
|
||||||
|
3) The 'mss' zone option and the CLAMPMSS=<number> option in
|
||||||
|
shorewall.conf could previously *increase* the MSS in a
|
||||||
|
packet; this possibility has been eliminated.
|
||||||
|
|
||||||
Other changes in Shorewall 4.0.0 Beta 5.
|
Other changes in Shorewall 4.0.0 Beta 5.
|
||||||
|
|
||||||
1) The Perl compiler is now externalized. Currently only the
|
1) The Perl compiler is now externalized. Both the compiler.pl program
|
||||||
compiler.pl program is documented but eventually, I plan to also
|
and the Perl Module interface are documented.
|
||||||
document the Perl Module interface. "
|
|
||||||
|
|
||||||
The compiler program is /usr/share/shorewall-perl/compiler.pl:
|
The compiler program is /usr/share/shorewall-perl/compiler.pl:
|
||||||
|
|
||||||
@ -87,6 +90,37 @@ Other changes in Shorewall 4.0.0 Beta 5.
|
|||||||
--directory SHOREWALL_DIR
|
--directory SHOREWALL_DIR
|
||||||
--timestamp TIMESTAMP
|
--timestamp TIMESTAMP
|
||||||
|
|
||||||
|
The Perl Module is externalized as follows:
|
||||||
|
|
||||||
|
use lib '/usr/share/shorewall-perl';
|
||||||
|
use Shorewall::Compiler;
|
||||||
|
|
||||||
|
compiler $filename, $directory, $verbose, $options
|
||||||
|
|
||||||
|
The arguments to the compiler function are as follows:
|
||||||
|
|
||||||
|
$filename - Name of the compiled script to be created.
|
||||||
|
If the arguments evaluates to false, the
|
||||||
|
configuration is syntax checked
|
||||||
|
|
||||||
|
$directory - The directory containing the configuration.
|
||||||
|
If passed as '', then /etc/shorewall/ is assumed.
|
||||||
|
|
||||||
|
$verbose - The verbosity level (0-2).
|
||||||
|
|
||||||
|
$options - A bitmap of options. Shorewall::Compiler
|
||||||
|
exports two constants to help building this
|
||||||
|
argument:
|
||||||
|
|
||||||
|
EXPORT = 0x01
|
||||||
|
TIMESTAMP = 0x02
|
||||||
|
|
||||||
|
The compiler raises an exception with 'die' if it encounters an
|
||||||
|
error; $@ contains the 'ERROR' messages describing the problem.
|
||||||
|
|
||||||
|
The compiler function can be called repeatedly with different
|
||||||
|
inputs.
|
||||||
|
|
||||||
2) When TC_ENABLED=Internal, Shorewall-perl now validates classids in
|
2) When TC_ENABLED=Internal, Shorewall-perl now validates classids in
|
||||||
the MARK/CLASSIFY column of /etc/shorewall/tcrules against the
|
the MARK/CLASSIFY column of /etc/shorewall/tcrules against the
|
||||||
classes generated by /etc/shorewall/tcclasses.
|
classes generated by /etc/shorewall/tcclasses.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define name shorewall
|
%define name shorewall
|
||||||
%define version 4.0.0
|
%define version 4.0.0
|
||||||
%define release 0Beta4
|
%define release 0Beta5
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
|
|
||||||
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
||||||
@ -252,6 +252,8 @@ fi
|
|||||||
%doc COPYING INSTALL changelog.txt releasenotes.txt tunnel ipsecvpn Samples
|
%doc COPYING INSTALL changelog.txt releasenotes.txt tunnel ipsecvpn Samples
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 14 2007 Tom Eastep tom@shorewall.net
|
||||||
|
- Updated to 4.0.0-0Beta5
|
||||||
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
||||||
- Updated to 4.0.0-0Beta4
|
- Updated to 4.0.0-0Beta4
|
||||||
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
||||||
|
@ -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.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
# shown below. Simply run this script to revert to your prior version of
|
# shown below. Simply run this script to revert to your prior version of
|
||||||
# Shoreline Firewall.
|
# Shoreline Firewall.
|
||||||
|
|
||||||
VERSION=4.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=4.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define name shorewall-lite
|
%define name shorewall-lite
|
||||||
%define version 4.0.0
|
%define version 4.0.0
|
||||||
%define release 0Beta4
|
%define release 0Beta5
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
|
|
||||||
Summary: Shoreline Firewall Lite is an iptables-based firewall for Linux systems.
|
Summary: Shoreline Firewall Lite is an iptables-based firewall for Linux systems.
|
||||||
@ -99,6 +99,8 @@ fi
|
|||||||
%doc COPYING changelog.txt releasenotes.txt
|
%doc COPYING changelog.txt releasenotes.txt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 14 2007 Tom Eastep tom@shorewall.net
|
||||||
|
- Updated to 4.0.0-0Beta5
|
||||||
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
||||||
- Updated to 4.0.0-0Beta4
|
- Updated to 4.0.0-0Beta4
|
||||||
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
||||||
|
@ -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.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -844,6 +844,8 @@ sub compiler( $$$$ ) {
|
|||||||
#
|
#
|
||||||
generate_aux_config if $export;
|
generate_aux_config if $export;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
}
|
}
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
@ -123,7 +123,7 @@ sub initialize() {
|
|||||||
ORIGINAL_POLICY_MATCH => '',
|
ORIGINAL_POLICY_MATCH => '',
|
||||||
LOGPARMS => '',
|
LOGPARMS => '',
|
||||||
TC_SCRIPT => '',
|
TC_SCRIPT => '',
|
||||||
VERSION => '4.0.0-Beta4',
|
VERSION => '4.0.0-Beta5',
|
||||||
);
|
);
|
||||||
#
|
#
|
||||||
# From shorewall.conf file
|
# From shorewall.conf file
|
||||||
|
@ -37,7 +37,6 @@ our @EXPORT = qw( validate_policy apply_policy_rules complete_standard_chain );
|
|||||||
our @EXPORT_OK = qw( );
|
our @EXPORT_OK = qw( );
|
||||||
our @VERSION = 1.00;
|
our @VERSION = 1.00;
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Create a new policy chain and return a reference to it.
|
# Create a new policy chain and return a reference to it.
|
||||||
#
|
#
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=4.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define name shorewall-perl
|
%define name shorewall-perl
|
||||||
%define version 4.0.0
|
%define version 4.0.0
|
||||||
%define release 0Beta4
|
%define release 0Beta5
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
|
|
||||||
Summary: Shoreline Firewall Perl-based compiler.
|
Summary: Shoreline Firewall Perl-based compiler.
|
||||||
@ -82,6 +82,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%doc COPYING releasenotes.txt
|
%doc COPYING releasenotes.txt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 14 2007 Tom Eastep tom@shorewall.net
|
||||||
|
- Updated to 4.0.0-0Beta5
|
||||||
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
||||||
- Updated to 4.0.0-0Beta4
|
- Updated to 4.0.0-0Beta4
|
||||||
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=4.0.0-Beta4
|
VERSION=4.0.0-Beta5
|
||||||
|
|
||||||
usage() # $1 = exit status
|
usage() # $1 = exit status
|
||||||
{
|
{
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%define name shorewall-shell
|
%define name shorewall-shell
|
||||||
%define version 4.0.0
|
%define version 4.0.0
|
||||||
%define release 0Beta4
|
%define release 0Beta5
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
|
|
||||||
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
||||||
@ -64,6 +64,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%doc COPYING INSTALL
|
%doc COPYING INSTALL
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 14 2007 Tom Eastep tom@shorewall.net
|
||||||
|
- Updated to 4.0.0-0Beta5
|
||||||
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
||||||
- Updated to 4.0.0-0Beta4
|
- Updated to 4.0.0-0Beta4
|
||||||
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
||||||
|
Loading…
x
Reference in New Issue
Block a user