X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/86351ef58bcc4537ad2c525988f173bcde31872c..cf4186880853ccf48cf9938df39687f671a018b9:/roles/grindtooth.rb diff --git a/roles/grindtooth.rb b/roles/grindtooth.rb index 7fc2daea9..d504a189f 100644 --- a/roles/grindtooth.rb +++ b/roles/grindtooth.rb @@ -2,23 +2,27 @@ name "grindtooth" description "Master role applied to grindtooth" default_attributes( - :accounts => { - :users => { - :jochen => { :status => :administrator } - } - }, :networking => { :interfaces => { - :internal_ipv4 => { - :interface => "eth0", + :internal => { + :interface => "enp3s0f0.2801", :role => :internal, - :family => :inet, - :address => "10.0.0.19" + :inet => { + :address => "10.0.0.19" + } + }, + :external => { + :interface => "enp3s0f0.2800", + :role => :external, + :inet => { + :address => "193.60.236.15" + } } } } ) run_list( - "role[ucl-internal]" + "role[ucl]", + "role[taginfo]" )