Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 35a1d90

Browse files
committed
Update README example and version.
1 parent 64a70d4 commit 35a1d90

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The following platforms are supported and known to work:
1919
* Debian (6.0 and later)
2020
* RedHat (5.8 and later)
2121
* CentOS (5.8 and later)
22+
* Ubuntu (10.04 and later)
2223

2324
Other platforms that support `iptables` and the `iptables-restore` script
2425
are likely to work as well; if you use one, please let me know so that I can
@@ -185,6 +186,14 @@ This would generate a file `/etc/iptables-rules` with the contents:
185186
COMMIT
186187
# Completed
187188
# This file generated by Chef. Changes will be overwritten.
189+
:PREROUTING ACCEPT [0:0]
190+
:INPUT ACCEPT [0:0]
191+
:FORWARD ACCEPT [0:0]
192+
:OUTPUT ACCEPT [0:0]
193+
:POSTROUTING ACCEPT [0:0]
194+
COMMIT
195+
# Completed
196+
# This file generated by Chef. Changes will be overwritten.
188197
*filter
189198
:INPUT DROP [0:0]
190199
:FORWARD ACCEPT [0:0]
@@ -200,6 +209,12 @@ This would generate a file `/etc/iptables-rules` with the contents:
200209
-A http --proto tcp --dport 443 --jump ACCEPT
201210
COMMIT
202211
# Completed
212+
# This file generated by Chef. Changes will be overwritten.
213+
*raw
214+
:PREROUTING ACCEPT [0:0]
215+
:OUTPUT ACCEPT [0:0]
216+
COMMIT
217+
# Completed
203218

204219
Which results in the following iptables configuration:
205220

@@ -248,8 +263,11 @@ Which results in the following iptables configuration:
248263
Changes
249264
=======
250265

266+
* 0.6.0 (March 19, 2014)
267+
* Add support for the raw table (#33 - Ray Ruvinskiy)
268+
* Add :delete semantics to iptables rules (#34 - Michael Parrott)
251269
* 0.5.2 (March 19, 2014)
252-
* Fix #21, error parsing node['kernel']['release'] (#30 - Michael Parrott)
270+
* Fix #21, error parsing node\['kernel'\]\['release'\] (#30 - Michael Parrott)
253271
* 0.5.1 (March 18, 2014)
254272
* Update README example so Chef doesn't warn duplicate resources (#32 - Michael Parrott)
255273
* 0.5.0 (March 18, 2014)

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
license "BSD"
44
description "Simple LWRP and recipe for managing iptables rules"
55
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
6-
version "0.5.1"
6+
version "0.6.0"
77
name "simple_iptables"
88

99
supports "debian", ">= 6.0"

0 commit comments

Comments
 (0)