]> git.pld-linux.org Git - packages/firewall-init.git/blobdiff - firewall-init.spec
- adapterized (sorted %verify attrs)
[packages/firewall-init.git] / firewall-init.spec
index b37c8c921711d93773e53e3943cd77f09949c7da..61e801303a2fad310327d6cc051bcad8ba61f87c 100644 (file)
@@ -1,18 +1,26 @@
 Summary:       Firewall SysV-init style start-up script
+Summary(pl):   Skrypt startowy firewalla
 Name:          firewall-init
-Version:       2.0
-Release:       1
-Copyright:     BSD
+Version:       2.99.8
+Release:       2
+License:       GPL
 Group:         Networking/Admin
-Source:                ftp://hunter.mimuw.edu.pl/pub/users/baggins/%{name}-%{version}.tar.gz
-Prereq:                /sbin/chkconfig
-Requires:      ipchains
-Buildarch:     noarch
-Buildroot:     /tmp/%{name}-%{version}-root
+Source0:       ftp://ftp.pld-linux.org/software/firewall-init/%{name}-%{version}.tar.bz2
+# Source0-md5: 1237a67be00e5ecef53a934f86c7507b
+Requires(post,preun):  /sbin/chkconfig
+Requires:      iptables >= 1.2.2-2
+Requires:      rc-scripts
+Obsoletes:     iptables-init
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-Firewall-init is meant to provide an easy to use interface to start and
-stopping the kernel IP packet filters and accounting through ipchains(8).
+Firewall-init is meant to provide an easy to use interface for
+starting and stopping the kernel IP packet filter through iptables(8).
+
+%description -l pl
+Dziêki firewall-init uzyskuje siê ³atwy interfejs do startowania i
+stopowania filtrów IP j±dra poprzez iptables(8).
 
 %prep
 %setup -q
@@ -20,95 +28,36 @@ stopping the kernel IP packet filters and accounting through ipchains(8).
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -d $RPM_BUILD_ROOT/etc/{sysconfig/firewall-rules,rc.d/init.d}
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
 
-install firewall.init $RPM_BUILD_ROOT/etc/rc.d/init.d/firewall
-install firewall $RPM_BUILD_ROOT/etc/sysconfig/
+%clean
+rm -rf $RPM_BUILD_ROOT
 
-for i in input output forward; do
-       echo '#<policy> <proto> <s_addr/s_mask> <s_port> <d_addr/d_mask> <d_port> <interface> <options>' > \
-               $RPM_BUILD_ROOT/etc/sysconfig/firewall-rules/${i}
-done
+#%%pre
+#if [ `rpm -q --queryformat='%{VERSION}' firewall-init` < '2.5' ]; then
+#      echo "You need to manually convert your rules to iptables or install"
+#      echo "firewall-init-ipchains"
+#      exit 1
+#fi
 
 %post
 /sbin/chkconfig --add firewall
+/sbin/chkconfig --add firewall-pre
 
-%postun
-if [ $1 = 0 ]; then
-   /sbin/chkconfig --del firewall
+%preun
+if [ "$1" = "0" ]; then
+       /sbin/chkconfig --del firewall
+       /sbin/chkconfig --del firewall-pre
 fi
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(644, root, root, 755)
-%doc README input.example
-%attr(600, root, root) %verify(not size mtime md5) %config(noreplace) /etc/sysconfig/firewall
-%attr(600, root, root) %verify(not size mtime md5) %config(noreplace) /etc/sysconfig/firewall-rules/*
-%attr(700, root, root) %dir /etc/sysconfig/firewall-rules
-%attr(700, root, root) /etc/rc.d/init.d/firewall
-
-%changelog
-* Tue Jul 06 1999 Jan Rêkorajski <baggins@pld.org.pl>
-  [2.0-1]
-- converted to ipchains
-- new source URL
-
-* Thu Oct 29 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.2-6]
-- added support for chconfig (firewall-chconfig.patch and %post{un}
-  sections).
-
-* Wed Jul 15 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.2-5]
-- added status and extstatus functionality to init script.
-
-* Thu Jul  9 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.2-4]
-- added -q %setup parameter,
-- added using %%{name}, %%{version} macros in Buildroot and Source,
-- spec file rewritten for using Buildroot,
-- added %clean section,
-- removed Packager field from spec (if you want recompile package and
-  redistribute this package later put this in your private .rpmrc). 
-- replaced "mkdir -p" with "install -d" in %install,
-- added %defattr and %attr macros in %files (allows building package from
-  non-root account),
-- changed permission for config files with firewall rules to 700,
-- added %verify(not size mtime md5) for config files with firewall rules,
-- added Summary field,
-- changed build architecture to noarch,
-- added restart and probe10min functionality to init script (probe10min 
-  helps on experiments with new FW rules),
-- added noreplace parameter for %config for config files with firewall
-  rules.
-
-* Mon Aug 18 1997 Bryan C. Andregg <bandregg@redhat.com>
-  [1.2-3]
-Fixed error handling typo.
-Removed handling of the 'any' case in favor of 'any/0'
-Added masquerading notes in README.
-Added empty config files.
-
-* Sun Aug 17 1997 Bryan C. Andregg <bandregg@redhat.com>
-Major bug fixes.
-Added 'Requires' field.
-Changes S9 to S09 in the rc.d runlevel dirs.
-Fixed spelling errors.
-Changed %config to %dir for /etc/sysconfig/firewall-rules.
-
-* Wed Aug 13 1997 Bryan C. Andregg <bandregg@redhat.com>
-Fixed numerous spelling errors.
-Added stderr redirection to > /dev/null and logging of errors to syslogd.
-Fixed bugs in /etc/rc.d/init.d/firewall
-Changed version to 1.1.
-Added support for ANY|any keyword in addrs,masks and ports.
-Added accounting rule set.
-Fixed xxx.xxx.xxx.xxx netmask format bug.
-Cleaned up firewall.init.
-
-* Tue Aug 12 1997 Bryan C. Andregg <bandregg@redhat.com>
-Included README.
-Moved /etc/sysconfig/firewall-ruels/input to %doc/input.example.
-Initial build.
+%defattr(644,root,root,755)
+%doc README
+%defattr(640,root,root,750)
+%verify(not md5 mtime size) %config(noreplace) /etc/sysconfig/firewall
+%verify(not md5 mtime size) %config(noreplace) /etc/sysconfig/firewall.d/ip*
+%verify(not md5 mtime size) %config(noreplace) /etc/sysconfig/firewall.d/functions.rules
+/etc/sysconfig/firewall.d/functions
+%attr(754,root,root) /etc/rc.d/init.d/firewall*
+%dir /etc/sysconfig/firewall.d
This page took 0.092905 seconds and 4 git commands to generate.