]> git.openstreetmap.org Git - chef.git/blob - roles/nchc.rb
The portmap service is now rpcbind
[chef.git] / roles / nchc.rb
1 name "nchc"
2 description "Role applied to all servers at NCHC"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :steven => { :status => :administrator },
8       :ceasar => { :status => :administrator }
9     }
10   },
11   :networking => {
12     :nameservers => [ "8.8.8.8", "8.8.4.4" ],
13     :roles => {
14       :external => {
15         :zone => "nc"
16       }
17     }
18   }
19 )
20
21 override_attributes(
22   :ntp => {
23     :servers => [ "0.tw.pool.ntp.org", "1.tw.pool.ntp.org", "europe.pool.ntp.org" ]
24   }
25 )
26
27 run_list(
28   "role[tw]"
29 )