diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-23 12:57:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 12:57:34 +0100 |
commit | 52e20fa562968dcfd7b524031f0cad2b6f4fff57 (patch) | |
tree | 8adba1fa5916b47a65b1b77f4b490e0b1fe6d1ae /python/vyos/ifconfig/control.py | |
parent | cefed7ae3fbbb93142051633ff00d3a9e19889c0 (diff) | |
parent | 193d0f416807b3eb5980dcf209e93774282b85f3 (diff) | |
download | vyos-1x-52e20fa562968dcfd7b524031f0cad2b6f4fff57.tar.gz vyos-1x-52e20fa562968dcfd7b524031f0cad2b6f4fff57.zip |
Merge pull request #258 from thomas-mangin/31-vrf
tunnel: T31: fix vrf deletion, add support for vrf on tunnels
Diffstat (limited to 'python/vyos/ifconfig/control.py')
-rw-r--r-- | python/vyos/ifconfig/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/vyos/ifconfig/control.py b/python/vyos/ifconfig/control.py index 635b626e8..89deba40a 100644 --- a/python/vyos/ifconfig/control.py +++ b/python/vyos/ifconfig/control.py @@ -48,7 +48,7 @@ class Control: """ Using the defined names, set data write to sysfs. """ - if not value: + if not value and not self._command_set[name].get('force', False): return None # the code can pass int as int @@ -108,7 +108,7 @@ class Control: """ Using the defined names, set data write to sysfs. """ - if not value: + if not value and not self._sysfs_set[name].get('force', False): return None # the code can pass int as int |