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 d6718a6e2..f96399071 100644
--- a/python/vyos/configdict.py
+++ b/python/vyos/configdict.py
@@ -129,6 +129,9 @@ 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):
@@ -139,9 +142,6 @@ 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