]> git.openstreetmap.org Git - chef.git/blob - roles/chef-repository.rb
poldi: Add munin voltage critical override
[chef.git] / roles / chef-repository.rb
1 name "chef-repository"
2 description "Role applied to all chef repositories"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :lonvia => {
8         :status => :user,
9         :shell => "/usr/bin/git-shell"
10       },
11       :yellowbkpk => {
12         :status => :user,
13         :shell => "/usr/bin/git-shell"
14       },
15       :chefrepo => {
16         :status => :role,
17         :members => [ 
18           :tomh, :grant, :matt, :jburgess, :lonvia, :yellowbkpk, :bretth
19         ]
20       }
21     }
22   },
23   :chef => {
24     :repository => "/var/lib/git/chef.git"
25   }
26 )
27
28 run_list(
29   "recipe[chef::repository]"
30 )