From 176c9ec093b2e50a1e7fab8da57a487d6725faee Mon Sep 17 00:00:00 2001 From: Will Hopper Date: Thu, 28 Jun 2012 15:08:12 -0700 Subject: [PATCH] Update formatting of README to meet Puppet Labs best practices --- README.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.markdown b/README.markdown index a07702f..663a2cc 100644 --- a/README.markdown +++ b/README.markdown @@ -158,7 +158,7 @@ And an example of a post class: Basic accept ICMP request example: firewall { "000 accept all icmp requests": - proto => "icmp", + proto => "icmp", action => "accept", } @@ -171,12 +171,12 @@ Drop all: Source NAT example (perfect for a virtualization host): firewall { '100 snat for network foo2': - chain => 'POSTROUTING', - jump => 'MASQUERADE', - proto => 'all', + chain => 'POSTROUTING', + jump => 'MASQUERADE', + proto => 'all', outiface => "eth0", - source => ['10.1.2.0/24'], - table => 'nat', + source => ['10.1.2.0/24'], + table => 'nat', } Creating a new rule that forwards to a chain, then adding a rule to this chain: -- 2.45.2