projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add VLAN numbers to external interfaces of UCL machines
[chef.git]
/
roles
/
ascalon.rb
1
name "ascalon"
2
description "Master role applied to ascalon"
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.18"
12
},
13
:external_ipv4 => {
14
:interface => "eth1.2800",
15
:role => :external,
16
:family => :inet,
17
:address => "193.60.236.10"
18
}
19
}
20
},
21
:accounts => {
22
:users => {
23
:emacsen => { :status => :administrator }
24
}
25
}
26
)
27
28
run_list(
29
"role[ucl-slough]",
30
"role[hp-g5]",
31
"role[roundup]"
32
)