From: Tom Hughes Date: Sun, 5 Jul 2020 09:39:21 +0000 (+0100) Subject: Bring up a DHCP server on tabaluga X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/6dc9d8bc3b0947e9960918ab6f387f8ad4d4c087 Bring up a DHCP server on tabaluga --- diff --git a/roles/tabaluga.rb b/roles/tabaluga.rb index 864529191..0e7296b33 100644 --- a/roles/tabaluga.rb +++ b/roles/tabaluga.rb @@ -2,6 +2,10 @@ name "tabaluga" description "Master role applied to tabaluga" default_attributes( + :dhcpd => { + :first_address => "10.0.62.1", + :last_address => "10.0.62.254" + }, :networking => { :interfaces => { :internal_ipv4 => { @@ -32,5 +36,6 @@ default_attributes( run_list( "role[equinix]", "role[hp-g9]", - "role[wiki]" + "role[wiki]", + "recipe[dhcpd]" )