diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-28 07:19:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 07:19:06 +0100 |
commit | 8247524dc18e2b8a97227e6c439051666f85d9a0 (patch) | |
tree | 076cfbb75245263e3b2bf0cba18d0d7f7409a1e1 /python/vyos/ifconfig/interface.py | |
parent | f0b3da2b36b8efd97c9fd6ca4e30437a7169b37b (diff) | |
parent | 9744b8e10fcc58a0266e4e0e02dd593c71406b5f (diff) | |
download | vyos-1x-8247524dc18e2b8a97227e6c439051666f85d9a0.tar.gz vyos-1x-8247524dc18e2b8a97227e6c439051666f85d9a0.zip |
Merge pull request #277 from thomas-mangin/T2057-fix-force
ifconfig: T2057: option forcing
Diffstat (limited to 'python/vyos/ifconfig/interface.py')
-rw-r--r-- | python/vyos/ifconfig/interface.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index f2b43fd35..8e37d6abd 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -59,7 +59,6 @@ class Interface(DHCP): 'shellcmd': 'ip link set dev {ifname} address {value}', }, 'vrf': { - 'force': True, 'convert': lambda v: f'master {v}' if v else 'nomaster', 'shellcmd': 'ip link set dev {ifname} {value}', }, |