diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2013-11-07 13:38:46 +0100 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2013-11-07 13:38:46 +0100 |
commit | 3cf047c88e14e787c5ebbb534cd3d433a76888a6 (patch) | |
tree | 84f0a527a704d77577a1e59211e9745a6eb25f2a /global/overlay | |
parent | f3ae5bc0596087afe2144fdbd31d1af3bd1af8f8 (diff) |
dhcp::host can't handle two MACs for same hostname
Diffstat (limited to 'global/overlay')
-rw-r--r-- | global/overlay/etc/puppet/manifests/cosmos-site.pp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/global/overlay/etc/puppet/manifests/cosmos-site.pp b/global/overlay/etc/puppet/manifests/cosmos-site.pp index 6c70449..0d942aa 100644 --- a/global/overlay/etc/puppet/manifests/cosmos-site.pp +++ b/global/overlay/etc/puppet/manifests/cosmos-site.pp @@ -136,16 +136,15 @@ node 'sto-tug-kvm1.swamid.se' { 'idp-tug-2b': mac => "52:54:00:01:00:02", ip => "130.242.130.6"; } - dhcp::host { - 'auth-tug-2': mac => "f0:4d:a2:73:4e:9b", ip => "130.242.130.12"; - } + dhcp::host { 'auth-tug-2': mac => "f0:4d:a2:73:4e:9b", ip => "130.242.130.12"; } + #dhcp::host { 'auth-tug-2': mac => "f0:4d:a2:73:4e:9c", ip => "130.242.130.12"; } dhcp::host { 'kvm-tug-2': mac => "f0:4d:a2:73:4f:82", ip => "130.242.130.20"; } dhcp::host { 'db-tug-2': mac => "24:b6:fd:fe:fa:f0", ip => "130.242.130.21"; } - dhcp::host { 'db-tug-2': mac => "24:b6:fd:fe:fa:53", ip => "130.242.130.21"; } + #dhcp::host { 'db-tug-2_eth1': mac => "24:b6:fd:fe:fa:53", ip => "130.242.130.21"; } dhcp::host { 'mq-tug-2': mac => "52:54:00:03:00:22", ip => "130.242.130.22"; |