projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f028c23b04b2199c4c71273c1e164c71b3b1c2b6
[chef.git]
/
roles
/
aarnet.rb
1
name "aarnet"
2
description "Role applied to all servers at AARNet"
3
4
default_attributes(
5
:accounts => {
6
:users => {
7
:chm => { :status => :administrator },
8
:bclifford => { :status => :administrator }
9
}
10
},
11
:hosted_by => "AARNet"
12
)
13
14
override_attributes(
15
:ntp => {
16
:servers => ["0.au.pool.ntp.org", "1.au.pool.ntp.org", "europe.pool.ntp.org"]
17
}
18
)
19
20
run_list(
21
"role[au]"
22
)