]> git.openstreetmap.org Git - chef.git/blob - roles/osuosl.rb
Add ghes.disable=1 to boot options on ramoth
[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   :networking => {
11     :nameservers => ["8.8.8.8", "8.8.4.4"],
12     :roles => {
13       :external => {
14         :zone => "ool",
15         :inet => {
16           :prefix => "28",
17           :gateway => "140.211.167.97"
18         }
19       }
20     }
21   }
22 )
23
24 override_attributes(
25   :ntp => {
26     :servers => ["ntp.osuosl.org"]
27   }
28 )
29
30 run_list(
31   "role[us]"
32 )