diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-18 17:35:31 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-18 17:35:31 +0100 |
commit | dd194aaa4a2ff04865c54c61282098d56d572ed9 (patch) | |
tree | 904cffc51618dbb7cb30b0d6293d29005ce1e00f /python/vyos/ifconfig/macvlan.py | |
parent | d76dbb558a4fcb73c2377b5524451bb408419802 (diff) | |
download | vyos-1x-dd194aaa4a2ff04865c54c61282098d56d572ed9.tar.gz vyos-1x-dd194aaa4a2ff04865c54c61282098d56d572ed9.zip |
interfaces: T2320: correctly honour create and debug options
Diffstat (limited to 'python/vyos/ifconfig/macvlan.py')
-rw-r--r-- | python/vyos/ifconfig/macvlan.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/macvlan.py b/python/vyos/ifconfig/macvlan.py index 55b1a3e91..37228e57f 100644 --- a/python/vyos/ifconfig/macvlan.py +++ b/python/vyos/ifconfig/macvlan.py @@ -35,7 +35,8 @@ class MACVLANIf(Interface): 'prefixes': ['peth', ], }, } - options = Interface.options + ['source_interface', 'mode'] + options = Interface.options + \ + ['source_interface', 'mode'] def _create(self): cmd = 'ip link add {ifname} link {source_interface} type macvlan mode {mode}'.format( |