1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 | diff --git a/provider/maas/bridgescript.go b/provider/maas/bridgescript.go
index ab6e768..84b40f5 100644
--- a/provider/maas/bridgescript.go
+++ b/provider/maas/bridgescript.go
@@ -30,14 +30,14 @@ import sys
# These options are to be removed from a sub-interface and applied to
# the newly bridged interface.
-BRIDGE_ONLY_OPTIONS = [
+BRIDGE_ONLY_OPTIONS = set([
'address',
'gateway',
'netmask',
'dns-nameservers',
'dns-search',
'dns-sortlist'
-]
+])
|