diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-04-28 22:46:39 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-04-28 22:46:39 -0700 |
commit | 2307eb8a7abbbf87676359c9bdffe14758d7c1ad (patch) | |
tree | 9cf86efa34705af6d9697a5a62d6a6671c1efda7 /examples/config | |
parent | 21cc606e60acc25d8741757eacc2c5459cdd1472 (diff) | |
download | chef-2307eb8a7abbbf87676359c9bdffe14758d7c1ad.tar.gz |
Adding a directory resource and provider
Diffstat (limited to 'examples/config')
-rw-r--r-- | examples/config/cookbooks/tempfile/recipes/default.rb | 6 |
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 |