projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add role for saphira
[chef.git]
/
roles
/
jump.rb
1
name "jump"
2
description "Role applied to all servers at Jump Networks"
3
4
default_attributes(
5
:networking => {
6
:nameservers => [
7
"185.73.44.3",
8
"2001:ba8:0:2c02::",
9
"2001:ba8:0:2c03::",
10
"2001:ba8:0:2c04::"
11
],
12
:roles => {
13
:external => {
14
:zone => "jn"
15
}
16
}
17
}
18
)
19
20
override_attributes(
21
:ntp => {
22
:servers => [ "0.uk.pool.ntp.org", "1.uk.pool.ntp.org", "europe.pool.ntp.org" ]
23
}
24
)
25
26
run_list(
27
"role[gb]"
28
)