summaryrefslogtreecommitdiff
path: root/examples/config
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2008-04-28 22:46:39 -0700
committerAdam Jacob <adam@hjksolutions.com>2008-04-28 22:46:39 -0700
commit2307eb8a7abbbf87676359c9bdffe14758d7c1ad (patch)
tree9cf86efa34705af6d9697a5a62d6a6671c1efda7 /examples/config
parent21cc606e60acc25d8741757eacc2c5459cdd1472 (diff)
downloadchef-2307eb8a7abbbf87676359c9bdffe14758d7c1ad.tar.gz
Adding a directory resource and provider
Diffstat (limited to 'examples/config')
-rw-r--r--examples/config/cookbooks/tempfile/recipes/default.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/config/cookbooks/tempfile/recipes/default.rb b/examples/config/cookbooks/tempfile/recipes/default.rb
index 7b0c3e278a..140323e7dc 100644
--- a/examples/config/cookbooks/tempfile/recipes/default.rb
+++ b/examples/config/cookbooks/tempfile/recipes/default.rb
@@ -3,3 +3,9 @@ file "/tmp/glen" do
mode 0755
action "create"
end
+
+directory "/tmp/marginal" do
+ owner "adam"
+ mode 0755
+ action :create
+end