summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/vyos/configdict.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/vyos/configdict.py b/python/vyos/configdict.py
index ddb9b563d..f50db0c99 100644
--- a/python/vyos/configdict.py
+++ b/python/vyos/configdict.py
@@ -123,9 +123,6 @@ def leaf_node_changed(conf, path):
if old is None and isinstance(new, dict):
# valueLess nodes return {} if node was added
return True
- if old is None and new is not None:
- # node was added to the CLI, e.g. OpenVPN node "openvpn-options"
- return True
if old is None:
return []
if isinstance(old, str):
@@ -136,6 +133,9 @@ def leaf_node_changed(conf, path):
elif isinstance(new, type(None)):
new = []
return list_diff(old, new)
+ if old is None and new is not None:
+ # node was added to the CLI
+ return True
return None