summaryrefslogtreecommitdiff
path: root/chef/examples/config/cookbooks/tempfile/recipes/default.rb
blob: b4fa86ac32b83179c90fbffda042a72ceb04910b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
file "/tmp/glen" do
  owner  "adam"
  mode   0755
  action "create"
end

file "/tmp/metallica" do
  action [ :create, :touch, :delete ]
end

directory "/tmp/marginal" do
  owner "adam"
  mode 0755
  action :create
end

remote_directory "/tmp/rubygems" do
  owner "adam"
  mode 0755
  source "packages"
  files_owner "adam"
  files_group "adam"
  files_mode 0755
end