diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-11 19:42:04 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-11 19:43:17 +0100 |
commit | 8d239aa739776e6ddf37cf7266933e414422893f (patch) | |
tree | 3616ba4374c4f1ebcad06bb8eaa283ffddb5e838 /src | |
parent | c736516e65d280eed74e4756fa89004c3cde21a3 (diff) | |
download | vyos-1x-8d239aa739776e6ddf37cf7266933e414422893f.tar.gz vyos-1x-8d239aa739776e6ddf37cf7266933e414422893f.zip |
nat: T3206: unable to delete only rules but keep destination node
(cherry picked from commit 9db4dbc4a84ff1a110617cb3c7849d7c9d4a62e7)
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/nat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/nat.py b/src/conf_mode/nat.py index 1ccec3d2e..2d98cb11b 100755 --- a/src/conf_mode/nat.py +++ b/src/conf_mode/nat.py @@ -88,7 +88,7 @@ def get_config(config=None): for direction in ['source', 'destination']: if direction in nat: default_values = defaults(base + [direction, 'rule']) - for rule in nat[direction]['rule']: + for rule in dict_search(f'{direction}.rule', nat) or []: nat[direction]['rule'][rule] = dict_merge(default_values, nat[direction]['rule'][rule]) |