diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-10-13 18:49:33 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-10-13 18:56:04 +0200 |
commit | 6c2a2cb8ce98b3b43ac07403bc61f186c28ccdf9 (patch) | |
tree | 8e06f7a6d8e4f295b3cfd845196e8e9172488ea5 /python | |
parent | f0f7d0658a7b48f7885916cd27ef499c780c3f4f (diff) | |
download | vyos-1x-6c2a2cb8ce98b3b43ac07403bc61f186c28ccdf9.tar.gz vyos-1x-6c2a2cb8ce98b3b43ac07403bc61f186c28ccdf9.zip |
pppoe-server: T2976: fix local-users default value retrieval from XML
We must use XML node style (hyphen over underscore).
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/configdict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/configdict.py b/python/vyos/configdict.py index 99072a1b9..02006465c 100644 --- a/python/vyos/configdict.py +++ b/python/vyos/configdict.py @@ -465,7 +465,7 @@ def get_accel_dict(config, base, chap_secrets): # Add individual local-user default values if vyos_dict_search('authentication.local_users.username', dict): - default_values = defaults(base + ['authentication', 'local_users', 'username']) + default_values = defaults(base + ['authentication', 'local-users', 'username']) for username in vyos_dict_search('authentication.local_users.username', dict): dict['authentication']['local_users']['username'][username] = dict_merge( |