]> git.openstreetmap.org Git - chef.git/blob - roles/osuosl.rb
nominatim: location of config file for nominatim-ui has changed
[chef.git] / roles / osuosl.rb
1 name "osuosl"
2 description "Role applied to all servers at OSUOSL"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :osuadmin => { :status => :administrator }
8     }
9   },
10   :hosted_by => "OSUOSL",
11   :location => "Corvallis, Oregon",
12   :timezone => "PST8PDT",
13   :networking => {
14     :roles => {
15       :external => {
16         :inet => {
17           :prefix => "28",
18           :gateway => "140.211.167.97"
19         },
20         :inet6 => {
21           :prefix => "64",
22           :gateway => "2605:bc80:3010:700::1"
23         }
24       }
25     }
26   }
27 )
28
29 override_attributes(
30   :ntp => {
31     :servers => ["ntp.osuosl.org"]
32   }
33 )
34
35 run_list(
36   "role[us]"
37 )