summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-03-27 22:02:18 +0000
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-03-27 22:02:18 +0000
commit9744b8e10fcc58a0266e4e0e02dd593c71406b5f (patch)
tree080e151d35b7bb31e80f134c8f8fddb4655b5b88 /python
parent583e9d907236a4a98fe40e97a378c1fb655f8a95 (diff)
downloadvyos-1x-9744b8e10fcc58a0266e4e0e02dd593c71406b5f.tar.gz
vyos-1x-9744b8e10fcc58a0266e4e0e02dd593c71406b5f.zip
ifconfig: T2057: option forcing
The code was trying to not perform change when not necessary however it prevent zero value to be set
Diffstat (limited to 'python')
-rw-r--r--python/vyos/ifconfig/control.py6
-rw-r--r--python/vyos/ifconfig/interface.py1
2 files changed, 0 insertions, 7 deletions
diff --git a/python/vyos/ifconfig/control.py b/python/vyos/ifconfig/control.py
index 28adc80d1..4c614c94f 100644
--- a/python/vyos/ifconfig/control.py
+++ b/python/vyos/ifconfig/control.py
@@ -50,9 +50,6 @@ class Control(Register):
"""
Using the defined names, set data write to sysfs.
"""
- if not value and not self._command_set[name].get('force', False):
- return None
-
# the code can pass int as int
value = str(value)
@@ -110,9 +107,6 @@ class Control(Register):
"""
Using the defined names, set data write to sysfs.
"""
- if not value and not self._sysfs_set[name].get('force', False):
- return None
-
# the code can pass int as int
value = str(value)
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}',
},