]> review.fuel-infra Code Review - puppet-modules/puppetlabs-firewall.git/commitdiff
Fix pre/post errors
authoredmundcraske <edmund@craske.net>
Thu, 12 Sep 2013 13:48:53 +0000 (14:48 +0100)
committeredmundcraske <edmund@craske.net>
Thu, 12 Sep 2013 13:48:53 +0000 (14:48 +0100)
README.markdown

index 1c6de517af1e7eb6d46debe488bb517bd6a51e85..467e8359ce84818a2f4386d3f0a9248e4aa2ec55 100644 (file)
@@ -109,7 +109,7 @@ The `post` class should be located in `my_fw/manifests/post.pp` and include any
       }
     }
 
-To put it all together: the `before` parameter in `Firewall {}` ensures `my_fw::post` is run before any other rules and the the `require` parameter ensures `my_fw::pre` is run after any other rules. So the run order is:
+To put it all together: the `require` parameter in `Firewall {}` ensures `my_fw::pre` is run before any other rules and the `before` parameter ensures `my_fw::post` is run after any other rules. So the run order is:
 
 * run the rules in `my_fw::pre`
 * run your rules (defined in code)