iptables/iptables.spec

changeset 0
4f133201e207
child 1
4667f24fe848
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/iptables/iptables.spec	Fri Mar 11 21:30:26 2011 +0100
     1.3 @@ -0,0 +1,405 @@
     1.4 +Name: iptables
     1.5 +Summary: Tools for managing Linux kernel packet filtering capabilities
     1.6 +Version: 1.4.1.1
     1.7 +Release: 5.6
     1.8 +Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2
     1.9 +Source1: iptables.init
    1.10 +Source2: iptables-config
    1.11 +Patch4: iptables-1.3.8-typo_latter.patch
    1.12 +Patch5: iptables-1.4.1.1-cloexec.patch
    1.13 +Patch8: iptables-1.4.1-nf_ext_init.patch
    1.14 +Patch9: iptables-1.4.1.1-tos_value_mask.patch
    1.15 +Group: System/Base
    1.16 +URL: http://www.netfilter.org/
    1.17 +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
    1.18 +License: GPLv2
    1.19 +BuildRequires: kernel-headers
    1.20 +Conflicts: kernel < 2.4.20
    1.21 +Requires(post): chkconfig
    1.22 +Requires(preun): chkconfig
    1.23 +
    1.24 +%description
    1.25 +The iptables utility controls the network packet filtering code in the
    1.26 +Linux kernel. If you need to set up firewalls and/or IP masquerading,
    1.27 +you should install this package.
    1.28 +
    1.29 +%package ipv6
    1.30 +Summary: IPv6 support for iptables
    1.31 +Group: System/Base
    1.32 +Requires: %{name} = %{version}-%{release}
    1.33 +Requires(post): chkconfig
    1.34 +Requires(preun): chkconfig
    1.35 +
    1.36 +%description ipv6
    1.37 +The iptables package contains IPv6 (the next version of the IP
    1.38 +protocol) support for iptables. Iptables controls the Linux kernel
    1.39 +network packet filtering code, allowing you to set up firewalls and IP
    1.40 +masquerading. 
    1.41 +
    1.42 +Install iptables-ipv6 if you need to set up firewalling for your
    1.43 +network and you are using ipv6.
    1.44 +
    1.45 +%package devel
    1.46 +Summary: Development package for iptables
    1.47 +Group: System/Base
    1.48 +Requires: %{name} = %{version}-%{release}
    1.49 +
    1.50 +%description devel
    1.51 +iptables development headers and libraries.
    1.52 +
    1.53 +The iptc interface is upstream marked as not public. The interface is not 
    1.54 +stable and may change with every new version. It is therefore unsupported.
    1.55 +
    1.56 +%prep
    1.57 +%setup -q
    1.58 +%patch4 -p1 -b .typo_latter
    1.59 +%patch5 -p1 -b .cloexec
    1.60 +%patch8 -p1 -b .nf_ext_init
    1.61 +%patch9 -p1 -b .tos_value_mask
    1.62 +
    1.63 +# fix constructor names, see also nf_ext_init patch
    1.64 +perl -pi -e "s/void _init\(/void __attribute\(\(constructor\)\) nf_ext_init\(/g" extensions/*.c
    1.65 +perl -pi -e "s/^_init\(/__attribute\(\(constructor\)\) nf_ext_init\(/g" extensions/*.c
    1.66 +
    1.67 +%build
    1.68 +./configure --enable-devel --enable-libipq --bindir=/bin --sbindir=/sbin --sysconfdir=/etc --libdir=/%{_libdir} --libexecdir=/%{_lib} --mandir=%{_mandir} --includedir=%{_includedir} --with-kernel=/usr --with-kbuild=/usr --with-ksource=/usr
    1.69 +make
    1.70 +
    1.71 +%install
    1.72 +rm -rf %{buildroot}
    1.73 +
    1.74 +make install DESTDIR=%{buildroot} 
    1.75 +
    1.76 +# install iptc devel library
    1.77 +install -m 644 libiptc/libiptc.a %{buildroot}/%{_libdir}
    1.78 +
    1.79 +# install init scripts and configuration files
    1.80 +install -d -m 755 $RPM_BUILD_ROOT/etc/rc.d/init.d
    1.81 +install -c -m 755 %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/iptables
    1.82 +sed -e 's;iptables;ip6tables;g' -e 's;IPTABLES;IP6TABLES;g' < %{SOURCE1} > ip6tables.init
    1.83 +install -c -m 755 ip6tables.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ip6tables
    1.84 +install -d -m 755 $RPM_BUILD_ROOT/etc/sysconfig
    1.85 +install -c -m 755 %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/iptables-config
    1.86 +sed -e 's;iptables;ip6tables;g' -e 's;IPTABLES;IP6TABLES;g' < %{SOURCE2} > ip6tables-config
    1.87 +install -c -m 755 ip6tables-config $RPM_BUILD_ROOT/etc/sysconfig/ip6tables-config
    1.88 +
    1.89 +%clean
    1.90 +rm -rf $RPM_BUILD_ROOT 
    1.91 +
    1.92 +%files
    1.93 +%defattr(-,root,root)
    1.94 +%doc COPYING INSTALL INCOMPATIBILITIES
    1.95 +%attr(0755,root,root) /etc/rc.d/init.d/iptables
    1.96 +%config(noreplace) %attr(0600,root,root) /etc/sysconfig/iptables-config
    1.97 +/sbin/iptables*
    1.98 +%{_mandir}/man8/iptables*
    1.99 +%dir /%{_lib}/xtables
   1.100 +/%{_lib}/xtables/libipt*
   1.101 +/%{_lib}/xtables/libxt*
   1.102 +
   1.103 +%files ipv6
   1.104 +%defattr(-,root,root)
   1.105 +%attr(0755,root,root) /etc/rc.d/init.d/ip6tables
   1.106 +%config(noreplace) %attr(0600,root,root) /etc/sysconfig/ip6tables-config
   1.107 +/sbin/ip6tables*
   1.108 +/bin/iptables-xml
   1.109 +%{_mandir}/man8/ip6tables*
   1.110 +/%{_lib}/xtables/libip6t*
   1.111 +
   1.112 +%files devel
   1.113 +%defattr(-,root,root)
   1.114 +%{_includedir}/*.h
   1.115 +%dir %{_includedir}/libiptc
   1.116 +%{_includedir}/libiptc/*.h
   1.117 +%{_libdir}/libipq.a
   1.118 +%{_libdir}/libiptc.a
   1.119 +%{_mandir}/man3/*
   1.120 +
   1.121 +%changelog
   1.122 +* Tue Jan 19 2010 Auke Kok <auke-jan.h.kok@intel.com> - 1.4.1.1
   1.123 +- remove startup symlinks, do not start iptables{,6} up by default
   1.124 +* Tue Jan 27 2009 Anas Nashif <anas.nashif@intel.com> 1.4.1.1
   1.125 +- Initial import into Moblin
   1.126 +* Tue Jul 22 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1.1-2
   1.127 +- fixed TOS value mask problem (rhbz#456244) (upstream patch)
   1.128 +- two more cloexec fixes
   1.129 +* Tue Jul  1 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1.1-1
   1.130 +- upstream bug fix release 1.4.1.1
   1.131 +- dropped extra patch for 1.4.1 - not needed anymore
   1.132 +* Tue Jun 10 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1-1
   1.133 +- new version 1.4.1 with new build environment
   1.134 +- additional ipv6 network mask patch from Jan Engelhardt
   1.135 +- spec file cleanup
   1.136 +- removed old patches
   1.137 +* Fri Jun  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.4.0-5
   1.138 +- use normal kernel headers, not linux/compiler.h
   1.139 +- change BuildRequires: kernel-devel to kernel-headers
   1.140 +- We need to do this to be able to build for both sparcv9 and sparc64
   1.141 +  (there is no kernel-devel.sparcv9)
   1.142 +* Thu Mar 20 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-4
   1.143 +- use O_CLOEXEC for all opened files in all applications (rhbz#438189)
   1.144 +* Mon Mar  3 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-3
   1.145 +- use the kernel headers from the build tree for iptables for now to be able to
   1.146 +  compile this package, but this makes the package more kernel dependant
   1.147 +- use s6_addr32 instead of in6_u.u6_addr32
   1.148 +* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.0-2
   1.149 +- Autorebuild for GCC 4.3
   1.150 +* Mon Feb 11 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-1
   1.151 +- new version 1.4.0
   1.152 +- fixed condrestart (rhbz#428148)
   1.153 +- report the module in rmmod_r if there is an error
   1.154 +- use nf_ext_init instead of my_init for extension constructors
   1.155 +* Mon Nov  5 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-6
   1.156 +- fixed leaked file descriptor before fork/exec (rhbz#312191)
   1.157 +- blacklisting is not working, use "install X /bin/(true|false)" test instead
   1.158 +- return private exit code 150 for disabled ipv6 support
   1.159 +- use script name for output messages
   1.160 +* Tue Oct 16 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-5
   1.161 +- fixed error code for stopping a already stopped firewall (rhbz#321751)
   1.162 +- moved blacklist test into start
   1.163 +* Wed Sep 26 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-4.1
   1.164 +- do not start ip6tables if ipv6 is blacklisted (rhbz#236888)
   1.165 +- use simpler fix for (rhbz#295611)
   1.166 +  Thanks to Linus Torvalds for the patch.
   1.167 +* Mon Sep 24 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-4
   1.168 +- fixed IPv6 reject type (rhbz#295181)
   1.169 +- fixed init script: start, stop and status
   1.170 +- support netfilter compiled into kernel in init script (rhbz#295611)
   1.171 +- dropped inversion for limit modules from man pages (rhbz#220780)
   1.172 +- fixed typo in ip6tables man page (rhbz#236185)
   1.173 +* Wed Sep 19 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-3
   1.174 +- do not depend on local_fs in lsb header - this delayes start after network
   1.175 +- fixed exit code for initscript usage
   1.176 +* Mon Sep 17 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-2.1
   1.177 +- do not use lock file for condrestart test
   1.178 +* Thu Aug 23 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-2
   1.179 +- fixed initscript for LSB conformance (rhbz#246953, rhbz#242459)
   1.180 +- provide iptc interface again, but unsupported (rhbz#216733)
   1.181 +- compile all extension, which are supported by the kernel-headers package
   1.182 +- review fixes (rhbz#225906)
   1.183 +* Tue Jul 31 2007 Thomas Woerner <twoerner@redhat.com>
   1.184 +- reverted ipv6 fix, because it disables the ipv6 at all (rhbz#236888)
   1.185 +* Fri Jul 13 2007 Steve Conklin <sconklin@redhat.com> - 1.3.8-1
   1.186 +- New version 1.3.8
   1.187 +* Mon Apr 23 2007 Jeremy Katz <katzj@redhat.com> - 1.3.7-2
   1.188 +- fix error when ipv6 support isn't loaded in the kernel (#236888)
   1.189 +* Wed Jan 10 2007 Thomas Woerner <twoerner@redhat.com> 1.3.7-1.1
   1.190 +- fixed installation of secmark modules
   1.191 +* Tue Jan  9 2007 Thomas Woerner <twoerner@redhat.com> 1.3.7-1
   1.192 +- new verison 1.3.7
   1.193 +- iptc is not a public interface and therefore not installed anymore
   1.194 +- dropped upstream secmark patch
   1.195 +* Tue Sep 19 2006 Thomas Woerner <twoerner@redhat.com> 1.3.5-2
   1.196 +- added secmark iptables patches (#201573)
   1.197 +* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.2.1
   1.198 +- rebuild
   1.199 +* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.2
   1.200 +- bump again for double-long bug on ppc(64)
   1.201 +* Tue Feb  7 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.1
   1.202 +- rebuilt for new gcc4.1 snapshot and glibc changes
   1.203 +* Thu Feb  2 2006 Thomas Woerner <twoerner@redhat.com> 1.3.5-1
   1.204 +- new version 1.3.5
   1.205 +- fixed init script to set policy for raw tables, too (#179094)
   1.206 +* Tue Jan 24 2006 Thomas Woerner <twoerner@redhat.com> 1.3.4-3
   1.207 +- added important iptables header files to devel package
   1.208 +* Fri Dec  9 2005 Jesse Keating <jkeating@redhat.com>
   1.209 +- rebuilt
   1.210 +* Fri Nov 25 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-2
   1.211 +- fix for plugin problem: link with "gcc -shared" instead of "ld -shared" and
   1.212 +  replace "_init" with "__attribute((constructor)) my_init"
   1.213 +* Fri Nov 25 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-1.1
   1.214 +- rebuild due to unresolved symbols in shared libraries
   1.215 +* Fri Nov 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-1
   1.216 +- new version 1.3.4
   1.217 +- dropped free_opts patch (upstream fixed)
   1.218 +- made libipq PIC (#158623)
   1.219 +- additional configuration options for iptables startup script (#172929)
   1.220 +  Thanks to Jan Gruenwald for the patch
   1.221 +- spec file cleanup (dropped linux_header define and usage)
   1.222 +* Mon Jul 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.2-1
   1.223 +- new version 1.3.2 with additional patch for the misplaced free_opts call
   1.224 +  from Marcus Sundberg
   1.225 +* Wed May 11 2005 Thomas Woerner <twoerner@redhat.com> 1.3.1-1
   1.226 +- new version 1.3.1
   1.227 +* Fri Mar 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.0-2
   1.228 +- Remove unnecessary explicit kernel dep (#146142)
   1.229 +- Fixed out of bounds accesses (#131848): Thanks to Steve Grubb
   1.230 +  for the patch
   1.231 +- Adapted iptables-config to reference to modprobe.conf (#150143)
   1.232 +- Remove misleading message (#140154): Thanks to Ulrich Drepper
   1.233 +  for the patch
   1.234 +* Mon Feb 21 2005 Thomas Woerner <twoerner@redhat.com> 1.3.0-1
   1.235 +- new version 1.3.0
   1.236 +* Thu Nov 11 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3.2
   1.237 +- fixed autoload problem in iptables and ip6tables (CAN-2004-0986)
   1.238 +* Fri Sep 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3.1
   1.239 +- changed default behaviour for IPTABLES_STATUS_NUMERIC to "yes" (#129731)
   1.240 +- modified config file to match this change and un-commented variables with
   1.241 +  default values
   1.242 +* Thu Sep 16 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3
   1.243 +- applied second part of cleanup patch from (#131848): thanks to Steve Grubb
   1.244 +  for the patch
   1.245 +* Wed Aug 25 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-2
   1.246 +- fixed free bug in iptables (#128322)
   1.247 +* Tue Jun 22 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-1
   1.248 +- new version 1.2.11
   1.249 +* Thu Jun 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.10-1
   1.250 +- new version 1.2.10
   1.251 +* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
   1.252 +- rebuilt
   1.253 +* Tue Mar  2 2004 Elliot Lee <sopwith@redhat.com>
   1.254 +- rebuilt
   1.255 +* Thu Feb 26 2004 Thomas Woerner <twoerner@redhat.com> 1.2.9-2.3
   1.256 +- fixed iptables-restore -c fault if there are no counters (#116421)
   1.257 +* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
   1.258 +- rebuilt
   1.259 +* Sun Jan 25 2004 Dan Walsh <dwalsh@redhat.com> 1.2.9-1.2
   1.260 +- Close File descriptors to prevent SELinux error message
   1.261 +* Wed Jan  7 2004 Thomas Woerner <twoerner@redhat.com> 1.2.9-1.1
   1.262 +- rebuild
   1.263 +* Wed Dec 17 2003 Thomas Woerner <twoerner@redhat.com> 1.2.9-1
   1.264 +- vew version 1.2.9
   1.265 +- new config options in ipXtables-config:
   1.266 +  IPTABLES_MODULES_UNLOAD
   1.267 +- more documentation in ipXtables-config
   1.268 +- fix for netlink security issue in libipq (devel package)
   1.269 +- print fix for libipt_icmp (#109546)
   1.270 +* Thu Oct 23 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-13
   1.271 +- marked all messages in iptables init script for translation (#107462)
   1.272 +- enabled devel package (#105884, #106101)
   1.273 +- bumped build for fedora for libipt_recent.so (#106002)
   1.274 +* Tue Sep 23 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-12.1
   1.275 +- fixed lost udp port range in ip6tables-save (#104484)
   1.276 +- fixed non numeric multiport port output in ipXtables-savs
   1.277 +* Mon Sep 22 2003 Florian La Roche <Florian.LaRoche@redhat.de> 1.2.8-11
   1.278 +- do not link against -lnsl
   1.279 +* Wed Sep 17 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-10
   1.280 +- made variables in rmmod_r local
   1.281 +* Tue Jul 22 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-9
   1.282 +- fixed permission for init script
   1.283 +* Sat Jul 19 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-8
   1.284 +- fixed save when iptables file is missing and iptables-config permissions
   1.285 +* Tue Jul  8 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-7
   1.286 +- fixes for ip6tables: module unloading, setting policy only for existing
   1.287 +  tables
   1.288 +* Thu Jul  3 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-6
   1.289 +- IPTABLES_SAVE_COUNTER defaults to no, now
   1.290 +- install config file in /etc/sysconfig
   1.291 +- exchange unload of ip_tables and ip_conntrack
   1.292 +- fixed start function
   1.293 +* Wed Jul  2 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-5
   1.294 +- new config option IPTABLES_SAVE_ON_RESTART
   1.295 +- init script: new status, save and restart
   1.296 +- fixes #44905, #65389, #80785, #82860, #91040, #91560 and #91374
   1.297 +* Mon Jun 30 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-4
   1.298 +- new config option IPTABLES_STATUS_NUMERIC
   1.299 +- cleared IPTABLES_MODULES in iptables-config
   1.300 +* Mon Jun 30 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-3
   1.301 +- new init scripts
   1.302 +* Sat Jun 28 2003 Florian La Roche <Florian.LaRoche@redhat.de>
   1.303 +- remove check for very old kernel versions in init scripts
   1.304 +- sync up both init scripts and remove some further ugly things
   1.305 +- add some docu into rpm
   1.306 +* Thu Jun 26 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-2
   1.307 +- rebuild
   1.308 +* Mon Jun 16 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-1
   1.309 +- update to 1.2.8
   1.310 +* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
   1.311 +- rebuilt
   1.312 +* Mon Jan 13 2003 Bill Nottingham <notting@redhat.com> 1.2.7a-1
   1.313 +- update to 1.2.7a
   1.314 +- add a plethora of bugfixes courtesy Michael Schwendt <mschewndt@yahoo.com>
   1.315 +* Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 1.2.6a-3
   1.316 +- Fix multilib
   1.317 +* Wed Aug  7 2002 Karsten Hopp <karsten@redhat.de>
   1.318 +- fixed iptables and ip6tables initscript output, based on #70511
   1.319 +- check return status of all iptables calls, not just the last one
   1.320 +  in a 'for' loop.
   1.321 +* Mon Jul 29 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.6a-1
   1.322 +- 1.2.6a (bugfix release, #69747)
   1.323 +* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
   1.324 +- automated rebuild
   1.325 +* Thu May 23 2002 Tim Powers <timp@redhat.com>
   1.326 +- automated rebuild
   1.327 +* Mon Mar  4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-3
   1.328 +- Add some fixes from CVS, fixing bug #60465
   1.329 +* Tue Feb 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-2
   1.330 +- Merge ip6tables improvements from Ian Prowell <iprowell@prowell.org>
   1.331 +  [#59402]
   1.332 +- Update URL (#59354)
   1.333 +- Use /sbin/chkconfig rather than chkconfig in %%%%postun script
   1.334 +* Fri Jan 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-1
   1.335 +- 1.2.5
   1.336 +* Wed Jan  9 2002 Tim Powers <timp@redhat.com>
   1.337 +- automated rebuild
   1.338 +* Mon Nov  5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-2
   1.339 +- Fix %%%%preun script
   1.340 +* Tue Oct 30 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-1
   1.341 +- Update to 1.2.4 (various fixes, including security fixes; among others:
   1.342 +  [#42990], #50500, #53325, #54280)
   1.343 +- Fix init script (#31133)
   1.344 +* Mon Sep  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-1
   1.345 +- 1.2.3 (5 security fixes, some other fixes)
   1.346 +- Fix updating (#53032)
   1.347 +* Mon Aug 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-4
   1.348 +- Fix #50990
   1.349 +- Add some fixes from current CVS; should fix #52620
   1.350 +* Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-3
   1.351 +- Add some fixes from the current CVS tree; fixes #49154 and some IPv6
   1.352 +  issues
   1.353 +* Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-2
   1.354 +- Fix iptables-save reject-with (#45632), Patch from Michael Schwendt
   1.355 +  <mschwendt@yahoo.com>
   1.356 +* Tue May  8 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-1
   1.357 +- 1.2.2
   1.358 +* Wed Mar 21 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.359 +- 1.2.1a, fixes #28412, #31136, #31460, #31133
   1.360 +* Thu Mar  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.361 +- Yet another initscript fix (#30173)
   1.362 +- Fix the fixes; they fixed some issues but broke more important
   1.363 +  stuff :/ (#30176)
   1.364 +* Tue Feb 27 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.365 +- Fix up initscript (#27962)
   1.366 +- Add fixes from CVS to iptables-{restore,save}, fixing #28412
   1.367 +* Fri Feb  9 2001 Karsten Hopp <karsten@redhat.de>
   1.368 +- create /etc/sysconfig/iptables mode 600 (same problem as #24245)
   1.369 +* Mon Feb  5 2001 Karsten Hopp <karsten@redhat.de>
   1.370 +- fix bugzilla #25986 (initscript not marked as config file)
   1.371 +- fix bugzilla #25962 (iptables-restore)
   1.372 +- mv chkconfig --del from postun to preun
   1.373 +* Thu Feb  1 2001 Trond Eivind Glomsrød <teg@redhat.com>
   1.374 +- Fix check for ipchains
   1.375 +* Mon Jan 29 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.376 +- Some fixes to init scripts
   1.377 +* Wed Jan 24 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.378 +- Add some fixes from CVS, fixes among other things Bug #24732
   1.379 +* Wed Jan 17 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.380 +- Add missing man pages, fix up init script (Bug #17676)
   1.381 +* Mon Jan 15 2001 Bill Nottingham <notting@redhat.com>
   1.382 +- add init script
   1.383 +* Mon Jan 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.384 +- 1.2
   1.385 +- fix up ipv6 split
   1.386 +- add init script
   1.387 +- Move the plugins from /usr/lib/iptables to /lib/iptables.
   1.388 +  This needs to work before /usr is mounted...
   1.389 +- Use -O1 on alpha (compiler bug)
   1.390 +* Sat Jan  6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   1.391 +- 1.1.2
   1.392 +- Add IPv6 support (in separate package)
   1.393 +* Thu Aug 17 2000 Bill Nottingham <notting@redhat.com>
   1.394 +- build everywhere
   1.395 +* Tue Jul 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
   1.396 +- 1.1.1
   1.397 +* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
   1.398 +- automatic rebuild
   1.399 +* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
   1.400 +- move iptables to /sbin.
   1.401 +- excludearch alpha for now, not building there because of compiler bug(?)
   1.402 +* Fri Jun  9 2000 Bill Nottingham <notting@redhat.com>
   1.403 +- don't obsolete ipchains either
   1.404 +- update to 1.1.0
   1.405 +* Sun Jun  4 2000 Bill Nottingham <notting@redhat.com>
   1.406 +- remove explicit kernel requirement
   1.407 +* Tue May  2 2000 Bernhard Rosenkränzer <bero@redhat.com>
   1.408 +- initial package

mercurial