=== modified file 'cloudinit/sources/DataSourceConfigDrive.py'
--- cloudinit/sources/DataSourceConfigDrive.py 2016-06-03 03:03:38 +0000
+++ cloudinit/sources/DataSourceConfigDrive.py 2016-06-03 16:55:21 +0000
@@ -293,6 +293,7 @@
'mac_address',
'subnets',
'params',
+ 'mtu',
],
'subnet': [
'type',
@@ -302,7 +303,6 @@
'metric',
'gateway',
'pointopoint',
- 'mtu',
'scope',
'dns_nameservers',
'dns_search',
@@ -342,7 +342,7 @@
})
subnets.append(subnet)
cfg.update({'subnets': subnets})
- if link['type'] in ['ethernet', 'vif', 'ovs', 'phy']:
+ if link['type'] in ['ethernet', 'vif', 'ovs', 'phy', 'bridge']:
cfg.update({
'type': 'physical',
'mac_address': link['ethernet_mac_address']})