projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Shorten shorewall zone name
[chef.git]
/
roles
/
osuosl.rb
1
name "osuosl"
2
description "Role applied to all servers at OSUOSL"
3
4
default_attributes(
5
:networking => {
6
:nameservers => [ "8.8.8.8", "8.8.4.4" ],
7
:roles => {
8
:internal => {
9
:inet => {
10
:prefix => "22",
11
:gateway => "10.0.0.0"
12
}
13
},
14
:external => {
15
:zone => "ool"
16
}
17
}
18
}
19
)
20
21
override_attributes(
22
:ntp => {
23
:servers => [ "ntp.osuosl.org" ]
24
}
25
)
26
27
run_list(
28
"role[us]"
29
)