projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Set correct default gateway for bowser
[chef.git]
/
roles
/
bowser.rb
1
name "bowser"
2
description "Master role applied to bowser"
3
4
default_attributes(
5
:location => "Carlton, Victoria, Australia",
6
:networking => {
7
:interfaces => {
8
:external_ipv4 => {
9
:interface => "bond0",
10
:role => :external,
11
:family => :inet,
12
:address => "138.44.68.106",
13
:prefix => "30",
14
:gateway => "138.44.68.105",
15
:mtu => 9000,
16
:bond => {
17
:slaves => %w[ens14f0 ens14f1]
18
}
19
}
20
},
21
:nameservers => [
22
"202.158.207.1",
23
"202.158.207.2"
24
]
25
}
26
)
27
28
run_list(
29
"role[aarnet]"
30
)