]> git.openstreetmap.org Git - chef.git/blob - roles/carnet.rb
Remove IPv6 resolver hack
[chef.git] / roles / carnet.rb
1 name "carnet"
2 description "Role applied to all servers at CARNet"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :anovak => { :status => :administrator },
8       :hbogner => { :status => :administrator }
9     }
10   },
11   :munin => {
12     :allow => [ "193.198.233.210" ]
13   },
14   :networking => {
15     :nameservers => [
16       "161.53.2.66",
17       "2001:b68:ff:1::2",
18       "2001:b68:ff:2::2",
19       "2001:4860:4860::8888"
20     ],
21     :roles => {
22       :external => {
23         :zone => "cnt"
24       }
25     }
26   }
27 )
28
29 override_attributes(
30   :ntp => {
31     :servers => [ "0.hr.pool.ntp.org", "1.hr.pool.ntp.org", "europe.pool.ntp.org" ]
32   }
33 )
34
35 run_list(
36   "role[hr]"
37 )