]> git.openstreetmap.org Git - chef.git/blob - roles/ouroboros.rb
Add otrs role
[chef.git] / roles / ouroboros.rb
1 name "ouroboros"
2 description "Master role applied to ouroboros"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal_ipv4 => {
8         :interface => "eth0",
9         :role => :internal,
10         :family => :inet,
11         :address => "146.179.159.172"
12       },
13       :external_ipv4 => {
14         :interface => "eth1",
15         :role => :external,
16         :family => :inet,
17         :address => "193.63.75.106"
18       },
19       :external_ipv6 => {
20         :interface => "eth1",
21         :role => :external,
22         :family => :inet6,
23         :address => "2001:630:12:500:223:7dff:feea:813a"
24       }
25     }
26   }
27 )
28
29 run_list(
30   "role[ic]",
31   "role[wiki]"
32 )