]> git.openstreetmap.org Git - chef.git/blob - roles/nchc.rb
Ignore some unconnected IPMI fan sensors
[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   :hosted_by => "NCHC",
12   :location => "Hsinchu, Taiwan",
13   :networking => {
14     :wireguard => { :keepalive => 180 }
15   }
16 )
17
18 override_attributes(
19   :networking => {
20     :nameservers => ["140.110.16.1", "140.110.4.1"]
21   },
22   :ntp => {
23     :servers => ["0.tw.pool.ntp.org", "1.tw.pool.ntp.org", "asia.pool.ntp.org"]
24   }
25 )
26
27 run_list(
28   "role[tw]"
29 )