]> git.openstreetmap.org Git - chef.git/blob - roles/osuosl.rb
Send incoming mail to the new frontends
[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   :networking => {
13     :nameservers => ["8.8.8.8", "8.8.4.4"],
14     :roles => {
15       :external => {
16         :zone => "ool",
17         :inet => {
18           :prefix => "28",
19           :gateway => "140.211.167.97"
20         },
21         :inet6 => {
22           :prefix => "64",
23           :gateway => "2605:bc80:3010:700::1"
24         }
25       }
26     }
27   }
28 )
29
30 override_attributes(
31   :ntp => {
32     :servers => ["ntp.osuosl.org"]
33   }
34 )
35
36 run_list(
37   "role[us]"
38 )