From c108e5ae60404c1d55c3633bd590b886c82c02c6 Mon Sep 17 00:00:00 2001 From: Jason Ardell Date: Thu, 8 Nov 2012 10:10:19 -0500 Subject: [PATCH] Fix bug in README documentation. The example used for opening port 80 for http had an inconsistency. The name of the file (port_http.erb) did not match the call to it (previously 'iptables_rule "http"'). This would result in an error where Chef said it couldn't find http.erb in any of the likely places. Fixed the example to use 'iptables_rule "port_http"' instead. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0c61bc..dae99e1 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ This would go in the cookbook, `httpd/templates/default/port_http.erb`. Then to use it in `recipe[httpd]`: - iptables_rule "http" + iptables_rule "port_http" License and Author ==================