]> git.openstreetmap.org Git - chef.git/blob - roles/taginfo.rb
026d38656f4b0272e54fc11d53d274fd11684719
[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       {
22         :name => "taginfo.openstreetmap.org",
23         :description => "This is the main taginfo site. It contains OSM data for the whole planet and is updated daily.",
24         :icon => "world",
25         :contact => "Jochen Topf <jochen@remote.org>"
26       }
27     ]
28   }
29 )
30
31 run_list(
32   "recipe[taginfo]"
33 )