diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/interfaces-geneve.py | 2 | ||||
| -rwxr-xr-x | src/conf_mode/interfaces-l2tpv3.py | 4 | ||||
| -rwxr-xr-x | src/conf_mode/interfaces-pseudo-ethernet.py | 2 | ||||
| -rwxr-xr-x | src/conf_mode/interfaces-vxlan.py | 2 | 
4 files changed, 5 insertions, 5 deletions
diff --git a/src/conf_mode/interfaces-geneve.py b/src/conf_mode/interfaces-geneve.py index b0c381656..eb18ec7a4 100755 --- a/src/conf_mode/interfaces-geneve.py +++ b/src/conf_mode/interfaces-geneve.py @@ -127,7 +127,7 @@ def apply(geneve):          conf['remote'] = geneve['remote']          # Finally create the new interface -        g = GeneveIf(geneve['intf'], config=conf) +        g = GeneveIf(geneve['intf'], **conf)          # update interface description used e.g. by SNMP          g.set_alias(geneve['description'])          # Maximum Transfer Unit (MTU) diff --git a/src/conf_mode/interfaces-l2tpv3.py b/src/conf_mode/interfaces-l2tpv3.py index ae49dadad..44fd02654 100755 --- a/src/conf_mode/interfaces-l2tpv3.py +++ b/src/conf_mode/interfaces-l2tpv3.py @@ -193,7 +193,7 @@ def apply(l2tpv3):          # always delete it first.          conf['session_id'] = l2tpv3['session_id']          conf['tunnel_id'] = l2tpv3['tunnel_id'] -        l = L2TPv3If(l2tpv3['intf'], config=conf) +        l = L2TPv3If(l2tpv3['intf'], **conf)          l.remove()      if not l2tpv3['deleted']: @@ -208,7 +208,7 @@ def apply(l2tpv3):          conf['peer_session_id'] = l2tpv3['peer_session_id']          # Finally create the new interface -        l = L2TPv3If(l2tpv3['intf'], config=conf) +        l = L2TPv3If(l2tpv3['intf'], **conf)          # update interface description used e.g. by SNMP          l.set_alias(l2tpv3['description'])          # Maximum Transfer Unit (MTU) diff --git a/src/conf_mode/interfaces-pseudo-ethernet.py b/src/conf_mode/interfaces-pseudo-ethernet.py index 864e28936..13c809e0d 100755 --- a/src/conf_mode/interfaces-pseudo-ethernet.py +++ b/src/conf_mode/interfaces-pseudo-ethernet.py @@ -232,7 +232,7 @@ def apply(peth):          # It is safe to "re-create" the interface always, there is a sanity check          # that the interface will only be create if its non existent -        p = MACVLANIf(peth['intf'], config=conf) +        p = MACVLANIf(peth['intf'], **conf)      else:          p = MACVLANIf(peth['intf']) diff --git a/src/conf_mode/interfaces-vxlan.py b/src/conf_mode/interfaces-vxlan.py index efdc21f89..cfddd0bf8 100755 --- a/src/conf_mode/interfaces-vxlan.py +++ b/src/conf_mode/interfaces-vxlan.py @@ -180,7 +180,7 @@ def apply(vxlan):          conf['port'] = vxlan['remote_port']          # Finally create the new interface -        v = VXLANIf(vxlan['intf'], config=conf) +        v = VXLANIf(vxlan['intf'], **conf)          # update interface description used e.g. by SNMP          v.set_alias(vxlan['description'])          # Maximum Transfer Unit (MTU)  | 
