]> git.openstreetmap.org Git - chef.git/blob - roles/taginfo.rb
Initial work on a taginfo cookbook
[chef.git] / roles / taginfo.rb
1 name "taginfo"
2 description "Role applied to all taginfo servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :jochen => {
8         :status => :administrator
9       },
10       :taginfo => {
11         :status => :role,
12         :members => [ :jochen, :tomh ]
13       }
14     }
15   },
16   :apt => {
17     :sources => [ "brightbox-ruby-ng" ]
18   },
19   :taginfo => {
20     :sites => [
21       { :name => "taginfo.openstreetmap.org" }
22     ]
23   }
24 )
25
26 run_list(
27   "recipe[taginfo]"
28 )