]> git.openstreetmap.org Git - chef.git/blob - roles/netalerts.rb
Simplify firewall zones
[chef.git] / roles / netalerts.rb
1 name "netalerts"
2 description "Role applied to all servers at NetAlerts"
3
4 default_attributes(
5   :hosted_by => "NetAlerts",
6   :location => "MontrĂ©al, Canada",
7   :timezone => "America/Montreal",
8   :networking => {
9     :nameservers => [
10       "209.172.41.202",
11       "209.172.41.200"
12     ]
13   }
14 )
15
16 override_attributes(
17   :ntp => {
18     :servers => ["0.ca.pool.ntp.org", "1.ca.pool.ntp.org", "north-america.pool.ntp.org"]
19   }
20 )
21
22 run_list(
23   "role[ca]"
24 )