Ubuntu Pastebin

Paste from aim at Fri, 8 Jan 2016 14:39:55 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
diff --git a/provider/maas/add-juju-bridge.py b/provider/maas/add-juju-bridge.py
index 35201d8..7407915 100755
--- a/provider/maas/add-juju-bridge.py
+++ b/provider/maas/add-juju-bridge.py
@@ -67,7 +67,7 @@ class LogicalInterface(object):
         self.is_bonded = [x for x in self.options if "bond-" in x]
         self.is_alias = ":" in self.name
         self.is_vlan = [x for x in self.options if x.startswith("vlan-raw-device")]
-        self.is_active = self.method == "dhcp" or self.method == "static"
+        self.is_active = True # self.method == "dhcp" or self.method == "static"
 
     def __str__(self):
         return self.name
Download as text