projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
685e83db47cf2c20b832361385df509fc2d3b9c2
[chef.git]
/
roles
/
datahata.rb
1
name "datahata"
2
description "Role applied to all servers at DataHata"
3
4
default_attributes(
5
:accounts => {
6
:users => {
7
:kom => { :status => :administrator }
8
}
9
},
10
:hosted_by => "DataHata",
11
:location => "Minsk, Belarus",
12
:networking => {
13
:nameservers => [
14
"31.130.200.2"
15
],
16
:roles => {
17
:external => {
18
:zone => "dh"
19
}
20
}
21
}
22
)
23
24
override_attributes(
25
:ntp => {
26
:servers => ["0.by.pool.ntp.org", "1.by.pool.ntp.org", "europe.pool.ntp.org"]
27
}
28
)
29
30
run_list(
31
"role[by]"
32
)