diff options
author | Adam Jacob <adam@hjksolutions.com> | 2008-03-23 20:33:06 -0700 |
---|---|---|
committer | Adam Jacob <adam@hjksolutions.com> | 2008-03-23 20:33:06 -0700 |
commit | c74068fffb387955cff8b32c2c984c782ee1e0a0 (patch) | |
tree | bac2087b4d045a2a5f36450fdc10d04202bf3961 /spec/data | |
parent | 90d083563df3fc997b8cd3790f3b0b95d0855461 (diff) | |
download | chef-c74068fffb387955cff8b32c2c984c782ee1e0a0.tar.gz |
Adding a File provider
Diffstat (limited to 'spec/data')
-rw-r--r-- | spec/data/cookbooks/openldap/recipes/gigantor.rb | 2 | ||||
-rw-r--r-- | spec/data/recipes/test.rb | 2 | ||||
-rw-r--r-- | spec/data/seattle.txt | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/spec/data/cookbooks/openldap/recipes/gigantor.rb b/spec/data/cookbooks/openldap/recipes/gigantor.rb index 4ebbaeb22d..b450eca7cd 100644 --- a/spec/data/cookbooks/openldap/recipes/gigantor.rb +++ b/spec/data/cookbooks/openldap/recipes/gigantor.rb @@ -1,3 +1,3 @@ cat "blanket" do pretty_kitty false -end
\ No newline at end of file +end diff --git a/spec/data/recipes/test.rb b/spec/data/recipes/test.rb index ce79f7109f..1c94b917f0 100644 --- a/spec/data/recipes/test.rb +++ b/spec/data/recipes/test.rb @@ -1,6 +1,6 @@ file "/etc/nsswitch.conf" do - insure "present" + action "create" owner "root" group "root" mode 0644 diff --git a/spec/data/seattle.txt b/spec/data/seattle.txt new file mode 100644 index 0000000000..19f6290939 --- /dev/null +++ b/spec/data/seattle.txt @@ -0,0 +1 @@ +Seattle is a great town. Next time you visit, you should buy me a beer.
\ No newline at end of file |