2007-04-03 18:13:36 +02:00
|
|
|
%define name shorewall-shell
|
2007-11-16 00:24:54 +01:00
|
|
|
%define version 4.0.6
|
2007-07-11 17:06:44 +02:00
|
|
|
%define release 1
|
2007-04-03 18:13:36 +02:00
|
|
|
|
|
|
|
Summary: Shoreline Firewall is an iptables-based firewall for Linux systems.
|
|
|
|
Name: %{name}
|
|
|
|
Version: %{version}
|
|
|
|
Release: %{release}
|
|
|
|
License: GPL
|
|
|
|
Packager: Tom Eastep <teastep@shorewall.net>
|
|
|
|
Group: Networking/Utilities
|
|
|
|
Source: %{name}-%{version}.tgz
|
|
|
|
URL: http://www.shorewall.net/
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
2007-07-03 00:51:36 +02:00
|
|
|
Requires: iptables
|
|
|
|
Requires: iproute
|
|
|
|
Requires: shorewall-common >= 4.0.0-0RC1
|
2007-07-02 16:50:57 +02:00
|
|
|
Provides: shorewall_compiler = %{version}-%{release}
|
2007-06-29 17:46:32 +02:00
|
|
|
Provides: shorewall = %{version}-%{release}
|
2007-06-29 21:52:32 +02:00
|
|
|
Obsoletes: shorewall < 4.0.0-0Beta7
|
2007-04-03 18:13:36 +02:00
|
|
|
|
|
|
|
%description
|
|
|
|
|
|
|
|
The Shoreline Firewall, more commonly known as "Shorewall", is a Netfilter
|
|
|
|
(iptables) based firewall that can be used on a dedicated firewall system,
|
|
|
|
a multi-function gateway/ router/server or on a standalone GNU/Linux system.
|
|
|
|
|
2007-07-02 16:54:49 +02:00
|
|
|
Shorewall-shell is a part of Shorewall that alows running shorewall with
|
2007-07-03 00:51:36 +02:00
|
|
|
legacy configurations. Shorewall-perl is the preferred compiler, please use
|
|
|
|
it for new installations.
|
2007-07-02 16:54:49 +02:00
|
|
|
|
2007-04-03 18:13:36 +02:00
|
|
|
%prep
|
|
|
|
|
|
|
|
%setup
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
|
|
|
export PREFIX=$RPM_BUILD_ROOT ; \
|
|
|
|
export OWNER=`id -n -u` ; \
|
|
|
|
export GROUP=`id -n -g` ;\
|
|
|
|
./install.sh -n
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
|
|
|
%preun
|
|
|
|
|
2007-07-11 17:06:44 +02:00
|
|
|
%postun
|
|
|
|
|
|
|
|
if [ "$1" -eq 0 -a -f /etc/shorewall/shorewall.conf ]; then
|
|
|
|
sed -i.rpmsave -e 's/SHOREWALL_COMPILER=shell/SHOREWALL_COMPILER=/' /etc/shorewall/shorewall.conf
|
|
|
|
if cmp -s /etc/shorewall/shorewall.conf.rpmsave /etc/shorewall/shorewall.conf; then
|
|
|
|
rm -f /etc/shorewall/shorewall.conf.rpmsave
|
|
|
|
else
|
|
|
|
echo "/etc/shorewall/shorewall.conf modified - original saved as /etc/shorewall/shorewall.conf.rpmsave"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-04-03 18:13:36 +02:00
|
|
|
%files
|
|
|
|
%defattr(0644,root,root,0755)
|
|
|
|
%attr(0755,root,root) %dir /usr/share/shorewall-shell
|
|
|
|
|
2007-07-02 16:50:57 +02:00
|
|
|
%attr(0755,root,root) /usr/share/shorewall-shell/compiler
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.accounting
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.actions
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.maclist
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.nat
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.providers
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.proxyarp
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.tc
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.tcrules
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/lib.tunnels
|
2007-04-07 21:31:07 +02:00
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/prog.footer
|
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/prog.header
|
2007-05-18 00:21:54 +02:00
|
|
|
%attr(0644,root,root) /usr/share/shorewall-shell/version
|
2007-04-03 18:13:36 +02:00
|
|
|
|
|
|
|
%doc COPYING INSTALL
|
|
|
|
|
|
|
|
%changelog
|
2007-11-16 00:24:54 +01:00
|
|
|
* Thu Nov 15 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.6-1
|
|
|
|
* Sat Nov 10 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.6-0RC3
|
|
|
|
* Thu Oct 25 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.6-0RC2
|
2007-10-19 21:43:14 +02:00
|
|
|
* Tue Oct 03 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.5-1
|
2007-09-10 17:52:57 +02:00
|
|
|
* Wed Sep 05 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.4-1
|
2007-08-26 17:10:25 +02:00
|
|
|
* Mon Aug 13 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.3-1
|
2007-08-10 19:37:02 +02:00
|
|
|
* Thu Aug 09 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.2-1
|
2007-07-21 16:17:27 +02:00
|
|
|
* Sat Jul 21 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.1-1
|
2007-07-11 19:40:25 +02:00
|
|
|
* Wed Jul 11 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Modify shorewall.conf on uninstall
|
|
|
|
- Updated to 4.0.0-1
|
2007-07-08 21:19:46 +02:00
|
|
|
* Sun Jul 08 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0RC2
|
2007-06-29 23:11:29 +02:00
|
|
|
* Fri Jun 29 2007 Tom EAstep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0RC1
|
2007-06-24 16:07:53 +02:00
|
|
|
* Sun Jun 24 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0Beta7
|
2007-06-20 23:14:32 +02:00
|
|
|
* Wed Jun 20 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0Beta6
|
2007-06-14 22:27:40 +02:00
|
|
|
* Thu Jun 14 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0Beta5
|
2007-06-08 18:27:21 +02:00
|
|
|
* Fri Jun 08 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0Beta4
|
2007-06-05 17:00:02 +02:00
|
|
|
* Tue Jun 05 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0Beta3
|
2007-05-16 00:42:00 +02:00
|
|
|
* Tue May 15 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 4.0.0-0Beta1
|
2007-05-14 01:11:32 +02:00
|
|
|
* Fri May 11 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 3.9.6-1
|
|
|
|
* Sat May 05 2007 Tom Eastep tom@shorewall.net
|
2007-05-05 21:32:22 +02:00
|
|
|
- Updated to 3.9.6-1
|
2007-05-01 00:00:07 +02:00
|
|
|
* Mon Apr 30 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 3.9.5-1
|
2007-04-23 19:26:17 +02:00
|
|
|
* Mon Apr 23 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 3.9.4-1
|
2007-04-18 22:03:59 +02:00
|
|
|
* Wed Apr 18 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 3.9.3-1
|
2007-04-17 00:51:53 +02:00
|
|
|
* Mon Apr 16 2007 Tom Eastep tom@shorewall.net
|
2007-04-17 00:39:29 +02:00
|
|
|
- Moved lib.dynamiczones to Shorewall-common
|
2007-04-15 04:31:08 +02:00
|
|
|
* Sat Apr 14 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Updated to 3.9.2-1
|
2007-04-03 18:13:36 +02:00
|
|
|
* Tue Apr 03 2007 Tom Eastep tom@shorewall.net
|
|
|
|
- Initial Version
|
|
|
|
|
|
|
|
|