summaryrefslogtreecommitdiff
path: root/examples/config/cookbooks/fakefile/recipes/default.rb
blob: 12ba3e69d9ad6c44091c28b22a88a52bf78c2c3d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
execute "write-foolio" do
  command <<-EOH
    echo 'monkeypants #{node[:ipaddress]} #{node[:friends]}' > /tmp/foolio
  EOH
  user "daemon"
end

script "monkeylikesit" do
  code %q{
print "Woot!\n";
open(FILE, ">", "/tmp/monkeylikesit") or die "Cannot open monkeylikesit";
print FILE "You have some interesting hobbies #{node[:ipaddress]}";
close(FILE);
}
  interpreter "perl"
end

perl "foobar" do
  code %q{
print "Woot!\n";    
  }
end

unless @node[:operatingsystem] == "Darwin"
  package "emacs"

  package "emacs" do
    action :remove
  end

  package "emacs" do
    version "22.1-0ubuntu10"
    action :install
  end

  package "emacs" do
    action :upgrade
  end

  package "emacs" do
    action :purge
  end
end

package "ruby-djbdns" do
  action [ :install, :remove, :upgrade, :purge ]
  provider Chef::Provider::Package::Rubygems
end

gem_package "ruby-djbdns" do
  action [ :install, :remove, :upgrade, :purge ]
  provider Chef::Provider::Package::Rubygems
end

file "/tmp/foo" do
  owner    "adam"
  mode     0644
  action   :create
  notifies :delete, resources(:file => "/tmp/glen"), :delayed
end

remote_file "/tmp/the_park.txt" do
  owner "adam"
  mode 0644
  source "the_park.txt"
  action :create
end

remote_directory "/tmp/remote_test" do
  owner "adam"
  mode 0755
  source "remote_test"
  files_owner "root"
  files_group(node[:operatingsystem] == "Debian" ? "root" : "wheel")
  files_mode 0644
  files_backup false
end

template "/tmp/foo-template" do
  owner    "adam"
  mode     0644
  source "monkey.erb"
  variables({
    :one => 'two',
    :el_che => 'rhymefest',
    :white => {
      :stripes => "are the best",
      :at => "the sleazy rock thing",
    }
  })
end

link "/tmp/foo" do
  link_type   :symbolic
  target_file "/tmp/xmen"
end 

# 0.upto(1000) do |n|
#   file "/tmp/somefile#{n}" do
#     owner  "adam"
#     mode   0644
#     action :create
#   end
# end

directory "/tmp/home" do
  owner "root"
  mode 0755
  action :create
end

search(:user, "*") do |u|
  directory "/tmp/home/#{u['name']}" do
    if u['name'] == "nobody" && @node[:operatingsystem] == "Darwin"
      owner "root"
    else
      owner "#{u['name']}"
    end
    mode 0755
    action :create
  end
end

monkey "snoopy" do
  eats "vegetables"
end

monkey "snack"

# user "katie" do
#   uid 9999
#   gid 100
#   home "/tmp/home/katie"
#   shell "/bin/bash"
#   comment "Katie Bethell"
#   action :create
# end
# 
# user "katie" do
#   gid 101
#   action :modify
# end
# 
# user "katie" do
#   shell "/home/katie"
#   action :manage
# end
# 
# user "katie" do
#   action [ :lock, :unlock, :remove ]
# end