Paste #557628
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | commit b137cd1e17e23b93037b90f4f1349f839f759796
Author: Mathieu Gagné <mgagne@iweb.com>
Date: Tue Aug 9 19:56:09 2016 -0400
Bond interfaces need to be auto
diff --git a/cloudinit/net/eni.py b/cloudinit/net/eni.py
index eff5b92..cd533dd 100644
--- a/cloudinit/net/eni.py
+++ b/cloudinit/net/eni.py
@@ -399,7 +399,7 @@ class Renderer(renderer.Renderer):
else:
# ifenslave docs say to auto the slave devices
lines = []
- if 'bond-master' in iface:
+ if 'bond-master' in iface or 'bond-slaves' in iface:
lines.append("auto {name}".format(**iface))
lines.append("iface {name} {inet} {mode}".format(**iface))
lines.extend(_iface_add_attrs(iface, index=0))
|