projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a56583d534cce669621ccb79e7880995fb159fc6
[chef.git]
/
roles
/
idris.rb
1
name "idris"
2
description "Master role applied to idris"
3
4
default_attributes(
5
:networking => {
6
:interfaces => {
7
:internal_ipv4 => {
8
:interface => "eth0",
9
:role => :internal,
10
:family => :inet,
11
:address => "10.0.0.4"
12
},
13
:external_ipv4 => {
14
:interface => "eth1",
15
:role => :external,
16
:family => :inet,
17
:address => "128.40.168.98"
18
}
19
}
20
}
21
)
22
23
run_list(
24
"role[ucl-internal]"
25
)