]> git.openstreetmap.org Git - chef.git/blob - roles/taginfo.rb
Move passenger configuration to a separate 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   :taginfo => {
17     :sites => [
18       {
19         :name => "taginfo.openstreetmap.org",
20         :description => "This is the main taginfo site. It contains OSM data for the whole planet and is updated daily.",
21         :icon => "world",
22         :contact => "Jochen Topf <jochen@remote.org>"
23       }
24     ]
25   }
26 )
27
28 run_list(
29   "recipe[taginfo]"
30 )