]> git.openstreetmap.org Git - chef.git/blob - roles/nchc.rb
Remove unused roles
[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     :nameservers => ["140.110.16.1", "140.110.4.1"],
15     :wireguard => { :keepalive => 180 }
16   }
17 )
18
19 override_attributes(
20   :ntp => {
21     :servers => ["0.tw.pool.ntp.org", "1.tw.pool.ntp.org", "asia.pool.ntp.org"]
22   }
23 )
24
25 run_list(
26   "role[tw]"
27 )