|
1 Name: iptables |
|
2 Summary: Tools for managing Linux kernel packet filtering capabilities |
|
3 Version: 1.4.1.1 |
|
4 Release: 5.6 |
|
5 Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2 |
|
6 Source1: iptables.init |
|
7 Source2: iptables-config |
|
8 Patch4: iptables-1.3.8-typo_latter.patch |
|
9 Patch5: iptables-1.4.1.1-cloexec.patch |
|
10 Patch8: iptables-1.4.1-nf_ext_init.patch |
|
11 Patch9: iptables-1.4.1.1-tos_value_mask.patch |
|
12 Group: System/Base |
|
13 URL: http://www.netfilter.org/ |
|
14 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) |
|
15 License: GPLv2 |
|
16 BuildRequires: kernel-headers |
|
17 Conflicts: kernel < 2.4.20 |
|
18 Requires(post): chkconfig |
|
19 Requires(preun): chkconfig |
|
20 |
|
21 %description |
|
22 The iptables utility controls the network packet filtering code in the |
|
23 Linux kernel. If you need to set up firewalls and/or IP masquerading, |
|
24 you should install this package. |
|
25 |
|
26 %package ipv6 |
|
27 Summary: IPv6 support for iptables |
|
28 Group: System/Base |
|
29 Requires: %{name} = %{version}-%{release} |
|
30 Requires(post): chkconfig |
|
31 Requires(preun): chkconfig |
|
32 |
|
33 %description ipv6 |
|
34 The iptables package contains IPv6 (the next version of the IP |
|
35 protocol) support for iptables. Iptables controls the Linux kernel |
|
36 network packet filtering code, allowing you to set up firewalls and IP |
|
37 masquerading. |
|
38 |
|
39 Install iptables-ipv6 if you need to set up firewalling for your |
|
40 network and you are using ipv6. |
|
41 |
|
42 %package devel |
|
43 Summary: Development package for iptables |
|
44 Group: System/Base |
|
45 Requires: %{name} = %{version}-%{release} |
|
46 |
|
47 %description devel |
|
48 iptables development headers and libraries. |
|
49 |
|
50 The iptc interface is upstream marked as not public. The interface is not |
|
51 stable and may change with every new version. It is therefore unsupported. |
|
52 |
|
53 %prep |
|
54 %setup -q |
|
55 %patch4 -p1 -b .typo_latter |
|
56 %patch5 -p1 -b .cloexec |
|
57 %patch8 -p1 -b .nf_ext_init |
|
58 %patch9 -p1 -b .tos_value_mask |
|
59 |
|
60 # fix constructor names, see also nf_ext_init patch |
|
61 perl -pi -e "s/void _init\(/void __attribute\(\(constructor\)\) nf_ext_init\(/g" extensions/*.c |
|
62 perl -pi -e "s/^_init\(/__attribute\(\(constructor\)\) nf_ext_init\(/g" extensions/*.c |
|
63 |
|
64 %build |
|
65 ./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 |
|
66 make |
|
67 |
|
68 %install |
|
69 rm -rf %{buildroot} |
|
70 |
|
71 make install DESTDIR=%{buildroot} |
|
72 |
|
73 # install iptc devel library |
|
74 install -m 644 libiptc/libiptc.a %{buildroot}/%{_libdir} |
|
75 |
|
76 # install init scripts and configuration files |
|
77 install -d -m 755 $RPM_BUILD_ROOT/etc/rc.d/init.d |
|
78 install -c -m 755 %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/iptables |
|
79 sed -e 's;iptables;ip6tables;g' -e 's;IPTABLES;IP6TABLES;g' < %{SOURCE1} > ip6tables.init |
|
80 install -c -m 755 ip6tables.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ip6tables |
|
81 install -d -m 755 $RPM_BUILD_ROOT/etc/sysconfig |
|
82 install -c -m 755 %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/iptables-config |
|
83 sed -e 's;iptables;ip6tables;g' -e 's;IPTABLES;IP6TABLES;g' < %{SOURCE2} > ip6tables-config |
|
84 install -c -m 755 ip6tables-config $RPM_BUILD_ROOT/etc/sysconfig/ip6tables-config |
|
85 |
|
86 %clean |
|
87 rm -rf $RPM_BUILD_ROOT |
|
88 |
|
89 %files |
|
90 %defattr(-,root,root) |
|
91 %doc COPYING INSTALL INCOMPATIBILITIES |
|
92 %attr(0755,root,root) /etc/rc.d/init.d/iptables |
|
93 %config(noreplace) %attr(0600,root,root) /etc/sysconfig/iptables-config |
|
94 /sbin/iptables* |
|
95 %{_mandir}/man8/iptables* |
|
96 %dir /%{_lib}/xtables |
|
97 /%{_lib}/xtables/libipt* |
|
98 /%{_lib}/xtables/libxt* |
|
99 |
|
100 %files ipv6 |
|
101 %defattr(-,root,root) |
|
102 %attr(0755,root,root) /etc/rc.d/init.d/ip6tables |
|
103 %config(noreplace) %attr(0600,root,root) /etc/sysconfig/ip6tables-config |
|
104 /sbin/ip6tables* |
|
105 /bin/iptables-xml |
|
106 %{_mandir}/man8/ip6tables* |
|
107 /%{_lib}/xtables/libip6t* |
|
108 |
|
109 %files devel |
|
110 %defattr(-,root,root) |
|
111 %{_includedir}/*.h |
|
112 %dir %{_includedir}/libiptc |
|
113 %{_includedir}/libiptc/*.h |
|
114 %{_libdir}/libipq.a |
|
115 %{_libdir}/libiptc.a |
|
116 %{_mandir}/man3/* |
|
117 |
|
118 %changelog |
|
119 * Tue Jan 19 2010 Auke Kok <auke-jan.h.kok@intel.com> - 1.4.1.1 |
|
120 - remove startup symlinks, do not start iptables{,6} up by default |
|
121 * Tue Jan 27 2009 Anas Nashif <anas.nashif@intel.com> 1.4.1.1 |
|
122 - Initial import into Moblin |
|
123 * Tue Jul 22 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1.1-2 |
|
124 - fixed TOS value mask problem (rhbz#456244) (upstream patch) |
|
125 - two more cloexec fixes |
|
126 * Tue Jul 1 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1.1-1 |
|
127 - upstream bug fix release 1.4.1.1 |
|
128 - dropped extra patch for 1.4.1 - not needed anymore |
|
129 * Tue Jun 10 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1-1 |
|
130 - new version 1.4.1 with new build environment |
|
131 - additional ipv6 network mask patch from Jan Engelhardt |
|
132 - spec file cleanup |
|
133 - removed old patches |
|
134 * Fri Jun 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.4.0-5 |
|
135 - use normal kernel headers, not linux/compiler.h |
|
136 - change BuildRequires: kernel-devel to kernel-headers |
|
137 - We need to do this to be able to build for both sparcv9 and sparc64 |
|
138 (there is no kernel-devel.sparcv9) |
|
139 * Thu Mar 20 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-4 |
|
140 - use O_CLOEXEC for all opened files in all applications (rhbz#438189) |
|
141 * Mon Mar 3 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-3 |
|
142 - use the kernel headers from the build tree for iptables for now to be able to |
|
143 compile this package, but this makes the package more kernel dependant |
|
144 - use s6_addr32 instead of in6_u.u6_addr32 |
|
145 * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.0-2 |
|
146 - Autorebuild for GCC 4.3 |
|
147 * Mon Feb 11 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-1 |
|
148 - new version 1.4.0 |
|
149 - fixed condrestart (rhbz#428148) |
|
150 - report the module in rmmod_r if there is an error |
|
151 - use nf_ext_init instead of my_init for extension constructors |
|
152 * Mon Nov 5 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-6 |
|
153 - fixed leaked file descriptor before fork/exec (rhbz#312191) |
|
154 - blacklisting is not working, use "install X /bin/(true|false)" test instead |
|
155 - return private exit code 150 for disabled ipv6 support |
|
156 - use script name for output messages |
|
157 * Tue Oct 16 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-5 |
|
158 - fixed error code for stopping a already stopped firewall (rhbz#321751) |
|
159 - moved blacklist test into start |
|
160 * Wed Sep 26 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-4.1 |
|
161 - do not start ip6tables if ipv6 is blacklisted (rhbz#236888) |
|
162 - use simpler fix for (rhbz#295611) |
|
163 Thanks to Linus Torvalds for the patch. |
|
164 * Mon Sep 24 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-4 |
|
165 - fixed IPv6 reject type (rhbz#295181) |
|
166 - fixed init script: start, stop and status |
|
167 - support netfilter compiled into kernel in init script (rhbz#295611) |
|
168 - dropped inversion for limit modules from man pages (rhbz#220780) |
|
169 - fixed typo in ip6tables man page (rhbz#236185) |
|
170 * Wed Sep 19 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-3 |
|
171 - do not depend on local_fs in lsb header - this delayes start after network |
|
172 - fixed exit code for initscript usage |
|
173 * Mon Sep 17 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-2.1 |
|
174 - do not use lock file for condrestart test |
|
175 * Thu Aug 23 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-2 |
|
176 - fixed initscript for LSB conformance (rhbz#246953, rhbz#242459) |
|
177 - provide iptc interface again, but unsupported (rhbz#216733) |
|
178 - compile all extension, which are supported by the kernel-headers package |
|
179 - review fixes (rhbz#225906) |
|
180 * Tue Jul 31 2007 Thomas Woerner <twoerner@redhat.com> |
|
181 - reverted ipv6 fix, because it disables the ipv6 at all (rhbz#236888) |
|
182 * Fri Jul 13 2007 Steve Conklin <sconklin@redhat.com> - 1.3.8-1 |
|
183 - New version 1.3.8 |
|
184 * Mon Apr 23 2007 Jeremy Katz <katzj@redhat.com> - 1.3.7-2 |
|
185 - fix error when ipv6 support isn't loaded in the kernel (#236888) |
|
186 * Wed Jan 10 2007 Thomas Woerner <twoerner@redhat.com> 1.3.7-1.1 |
|
187 - fixed installation of secmark modules |
|
188 * Tue Jan 9 2007 Thomas Woerner <twoerner@redhat.com> 1.3.7-1 |
|
189 - new verison 1.3.7 |
|
190 - iptc is not a public interface and therefore not installed anymore |
|
191 - dropped upstream secmark patch |
|
192 * Tue Sep 19 2006 Thomas Woerner <twoerner@redhat.com> 1.3.5-2 |
|
193 - added secmark iptables patches (#201573) |
|
194 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.2.1 |
|
195 - rebuild |
|
196 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.2 |
|
197 - bump again for double-long bug on ppc(64) |
|
198 * Tue Feb 7 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.1 |
|
199 - rebuilt for new gcc4.1 snapshot and glibc changes |
|
200 * Thu Feb 2 2006 Thomas Woerner <twoerner@redhat.com> 1.3.5-1 |
|
201 - new version 1.3.5 |
|
202 - fixed init script to set policy for raw tables, too (#179094) |
|
203 * Tue Jan 24 2006 Thomas Woerner <twoerner@redhat.com> 1.3.4-3 |
|
204 - added important iptables header files to devel package |
|
205 * Fri Dec 9 2005 Jesse Keating <jkeating@redhat.com> |
|
206 - rebuilt |
|
207 * Fri Nov 25 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-2 |
|
208 - fix for plugin problem: link with "gcc -shared" instead of "ld -shared" and |
|
209 replace "_init" with "__attribute((constructor)) my_init" |
|
210 * Fri Nov 25 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-1.1 |
|
211 - rebuild due to unresolved symbols in shared libraries |
|
212 * Fri Nov 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-1 |
|
213 - new version 1.3.4 |
|
214 - dropped free_opts patch (upstream fixed) |
|
215 - made libipq PIC (#158623) |
|
216 - additional configuration options for iptables startup script (#172929) |
|
217 Thanks to Jan Gruenwald for the patch |
|
218 - spec file cleanup (dropped linux_header define and usage) |
|
219 * Mon Jul 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.2-1 |
|
220 - new version 1.3.2 with additional patch for the misplaced free_opts call |
|
221 from Marcus Sundberg |
|
222 * Wed May 11 2005 Thomas Woerner <twoerner@redhat.com> 1.3.1-1 |
|
223 - new version 1.3.1 |
|
224 * Fri Mar 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.0-2 |
|
225 - Remove unnecessary explicit kernel dep (#146142) |
|
226 - Fixed out of bounds accesses (#131848): Thanks to Steve Grubb |
|
227 for the patch |
|
228 - Adapted iptables-config to reference to modprobe.conf (#150143) |
|
229 - Remove misleading message (#140154): Thanks to Ulrich Drepper |
|
230 for the patch |
|
231 * Mon Feb 21 2005 Thomas Woerner <twoerner@redhat.com> 1.3.0-1 |
|
232 - new version 1.3.0 |
|
233 * Thu Nov 11 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3.2 |
|
234 - fixed autoload problem in iptables and ip6tables (CAN-2004-0986) |
|
235 * Fri Sep 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3.1 |
|
236 - changed default behaviour for IPTABLES_STATUS_NUMERIC to "yes" (#129731) |
|
237 - modified config file to match this change and un-commented variables with |
|
238 default values |
|
239 * Thu Sep 16 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3 |
|
240 - applied second part of cleanup patch from (#131848): thanks to Steve Grubb |
|
241 for the patch |
|
242 * Wed Aug 25 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-2 |
|
243 - fixed free bug in iptables (#128322) |
|
244 * Tue Jun 22 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-1 |
|
245 - new version 1.2.11 |
|
246 * Thu Jun 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.10-1 |
|
247 - new version 1.2.10 |
|
248 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> |
|
249 - rebuilt |
|
250 * Tue Mar 2 2004 Elliot Lee <sopwith@redhat.com> |
|
251 - rebuilt |
|
252 * Thu Feb 26 2004 Thomas Woerner <twoerner@redhat.com> 1.2.9-2.3 |
|
253 - fixed iptables-restore -c fault if there are no counters (#116421) |
|
254 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> |
|
255 - rebuilt |
|
256 * Sun Jan 25 2004 Dan Walsh <dwalsh@redhat.com> 1.2.9-1.2 |
|
257 - Close File descriptors to prevent SELinux error message |
|
258 * Wed Jan 7 2004 Thomas Woerner <twoerner@redhat.com> 1.2.9-1.1 |
|
259 - rebuild |
|
260 * Wed Dec 17 2003 Thomas Woerner <twoerner@redhat.com> 1.2.9-1 |
|
261 - vew version 1.2.9 |
|
262 - new config options in ipXtables-config: |
|
263 IPTABLES_MODULES_UNLOAD |
|
264 - more documentation in ipXtables-config |
|
265 - fix for netlink security issue in libipq (devel package) |
|
266 - print fix for libipt_icmp (#109546) |
|
267 * Thu Oct 23 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-13 |
|
268 - marked all messages in iptables init script for translation (#107462) |
|
269 - enabled devel package (#105884, #106101) |
|
270 - bumped build for fedora for libipt_recent.so (#106002) |
|
271 * Tue Sep 23 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-12.1 |
|
272 - fixed lost udp port range in ip6tables-save (#104484) |
|
273 - fixed non numeric multiport port output in ipXtables-savs |
|
274 * Mon Sep 22 2003 Florian La Roche <Florian.LaRoche@redhat.de> 1.2.8-11 |
|
275 - do not link against -lnsl |
|
276 * Wed Sep 17 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-10 |
|
277 - made variables in rmmod_r local |
|
278 * Tue Jul 22 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-9 |
|
279 - fixed permission for init script |
|
280 * Sat Jul 19 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-8 |
|
281 - fixed save when iptables file is missing and iptables-config permissions |
|
282 * Tue Jul 8 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-7 |
|
283 - fixes for ip6tables: module unloading, setting policy only for existing |
|
284 tables |
|
285 * Thu Jul 3 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-6 |
|
286 - IPTABLES_SAVE_COUNTER defaults to no, now |
|
287 - install config file in /etc/sysconfig |
|
288 - exchange unload of ip_tables and ip_conntrack |
|
289 - fixed start function |
|
290 * Wed Jul 2 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-5 |
|
291 - new config option IPTABLES_SAVE_ON_RESTART |
|
292 - init script: new status, save and restart |
|
293 - fixes #44905, #65389, #80785, #82860, #91040, #91560 and #91374 |
|
294 * Mon Jun 30 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-4 |
|
295 - new config option IPTABLES_STATUS_NUMERIC |
|
296 - cleared IPTABLES_MODULES in iptables-config |
|
297 * Mon Jun 30 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-3 |
|
298 - new init scripts |
|
299 * Sat Jun 28 2003 Florian La Roche <Florian.LaRoche@redhat.de> |
|
300 - remove check for very old kernel versions in init scripts |
|
301 - sync up both init scripts and remove some further ugly things |
|
302 - add some docu into rpm |
|
303 * Thu Jun 26 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-2 |
|
304 - rebuild |
|
305 * Mon Jun 16 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-1 |
|
306 - update to 1.2.8 |
|
307 * Wed Jan 22 2003 Tim Powers <timp@redhat.com> |
|
308 - rebuilt |
|
309 * Mon Jan 13 2003 Bill Nottingham <notting@redhat.com> 1.2.7a-1 |
|
310 - update to 1.2.7a |
|
311 - add a plethora of bugfixes courtesy Michael Schwendt <mschewndt@yahoo.com> |
|
312 * Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 1.2.6a-3 |
|
313 - Fix multilib |
|
314 * Wed Aug 7 2002 Karsten Hopp <karsten@redhat.de> |
|
315 - fixed iptables and ip6tables initscript output, based on #70511 |
|
316 - check return status of all iptables calls, not just the last one |
|
317 in a 'for' loop. |
|
318 * Mon Jul 29 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.6a-1 |
|
319 - 1.2.6a (bugfix release, #69747) |
|
320 * Fri Jun 21 2002 Tim Powers <timp@redhat.com> |
|
321 - automated rebuild |
|
322 * Thu May 23 2002 Tim Powers <timp@redhat.com> |
|
323 - automated rebuild |
|
324 * Mon Mar 4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-3 |
|
325 - Add some fixes from CVS, fixing bug #60465 |
|
326 * Tue Feb 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-2 |
|
327 - Merge ip6tables improvements from Ian Prowell <iprowell@prowell.org> |
|
328 [#59402] |
|
329 - Update URL (#59354) |
|
330 - Use /sbin/chkconfig rather than chkconfig in %%%%postun script |
|
331 * Fri Jan 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-1 |
|
332 - 1.2.5 |
|
333 * Wed Jan 9 2002 Tim Powers <timp@redhat.com> |
|
334 - automated rebuild |
|
335 * Mon Nov 5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-2 |
|
336 - Fix %%%%preun script |
|
337 * Tue Oct 30 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-1 |
|
338 - Update to 1.2.4 (various fixes, including security fixes; among others: |
|
339 [#42990], #50500, #53325, #54280) |
|
340 - Fix init script (#31133) |
|
341 * Mon Sep 3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-1 |
|
342 - 1.2.3 (5 security fixes, some other fixes) |
|
343 - Fix updating (#53032) |
|
344 * Mon Aug 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-4 |
|
345 - Fix #50990 |
|
346 - Add some fixes from current CVS; should fix #52620 |
|
347 * Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-3 |
|
348 - Add some fixes from the current CVS tree; fixes #49154 and some IPv6 |
|
349 issues |
|
350 * Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-2 |
|
351 - Fix iptables-save reject-with (#45632), Patch from Michael Schwendt |
|
352 <mschwendt@yahoo.com> |
|
353 * Tue May 8 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-1 |
|
354 - 1.2.2 |
|
355 * Wed Mar 21 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
356 - 1.2.1a, fixes #28412, #31136, #31460, #31133 |
|
357 * Thu Mar 1 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
358 - Yet another initscript fix (#30173) |
|
359 - Fix the fixes; they fixed some issues but broke more important |
|
360 stuff :/ (#30176) |
|
361 * Tue Feb 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
362 - Fix up initscript (#27962) |
|
363 - Add fixes from CVS to iptables-{restore,save}, fixing #28412 |
|
364 * Fri Feb 9 2001 Karsten Hopp <karsten@redhat.de> |
|
365 - create /etc/sysconfig/iptables mode 600 (same problem as #24245) |
|
366 * Mon Feb 5 2001 Karsten Hopp <karsten@redhat.de> |
|
367 - fix bugzilla #25986 (initscript not marked as config file) |
|
368 - fix bugzilla #25962 (iptables-restore) |
|
369 - mv chkconfig --del from postun to preun |
|
370 * Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|
371 - Fix check for ipchains |
|
372 * Mon Jan 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
373 - Some fixes to init scripts |
|
374 * Wed Jan 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
375 - Add some fixes from CVS, fixes among other things Bug #24732 |
|
376 * Wed Jan 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
377 - Add missing man pages, fix up init script (Bug #17676) |
|
378 * Mon Jan 15 2001 Bill Nottingham <notting@redhat.com> |
|
379 - add init script |
|
380 * Mon Jan 15 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
381 - 1.2 |
|
382 - fix up ipv6 split |
|
383 - add init script |
|
384 - Move the plugins from /usr/lib/iptables to /lib/iptables. |
|
385 This needs to work before /usr is mounted... |
|
386 - Use -O1 on alpha (compiler bug) |
|
387 * Sat Jan 6 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
|
388 - 1.1.2 |
|
389 - Add IPv6 support (in separate package) |
|
390 * Thu Aug 17 2000 Bill Nottingham <notting@redhat.com> |
|
391 - build everywhere |
|
392 * Tue Jul 25 2000 Bernhard Rosenkraenzer <bero@redhat.com> |
|
393 - 1.1.1 |
|
394 * Thu Jul 13 2000 Prospector <bugzilla@redhat.com> |
|
395 - automatic rebuild |
|
396 * Tue Jun 27 2000 Preston Brown <pbrown@redhat.com> |
|
397 - move iptables to /sbin. |
|
398 - excludearch alpha for now, not building there because of compiler bug(?) |
|
399 * Fri Jun 9 2000 Bill Nottingham <notting@redhat.com> |
|
400 - don't obsolete ipchains either |
|
401 - update to 1.1.0 |
|
402 * Sun Jun 4 2000 Bill Nottingham <notting@redhat.com> |
|
403 - remove explicit kernel requirement |
|
404 * Tue May 2 2000 Bernhard Rosenkränzer <bero@redhat.com> |
|
405 - initial package |