]> git.openstreetmap.org Git - chef.git/blob - roles/drogon.rb
Merge interface families
[chef.git] / roles / drogon.rb
1 name "drogon"
2 description "Master role applied to drogon"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :zelja => { :status => :administrator }
8     }
9   },
10   :location => "Osijek, Croatia",
11   :networking => {
12     :interfaces => {
13       :external => {
14         :interface => "eth0",
15         :role => :external,
16         :inet => {
17           :address => "161.53.30.107",
18           :prefix => "27",
19           :gateway => "161.53.30.97"
20         },
21         :inet6 => {
22           :address => "2001:b68:c0ff:0:221:5eff:fe40:c7c4",
23           :prefix => "64",
24           :gateway => "fe80::161:53:30:97"
25         }
26       }
27     }
28   }
29 )
30
31 run_list(
32   "role[carnet]"
33 )