2d71c24e0f
- maas-enlist does not work with hyphenated domains. Backport from upstream fix. - Ignore MAC addresses of '00:00:00:00:00:00' to fix issue of OVS break MAAS controller registration Change-Id: I26b09bb35ef3bfc9424188dbf9fccf0ca3199441
7 lines
240 B
Diff
7 lines
240 B
Diff
394a395,399
|
|
> # Exclude interfaces that have duplicate MACs
|
|
> # such as OVS gretap and erspan interfaces
|
|
> ifaces = { k: v
|
|
> for k, v in ifaces.items()
|
|
> if v.get('mac', '') != '00:00:00:00:00:00'}
|