diff options
author | John Estabrook <jestabro@vyos.io> | 2020-08-28 15:50:50 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2020-08-31 09:57:00 -0500 |
commit | ad69fb36201ee0930b76d80f0869284e26846991 (patch) | |
tree | a4dda1096a267fed41ac90121ab6233e5b8b7d39 /src/conf_mode/system-options.py | |
parent | 050f16e5c92ebb341913942ebedc6fa0c2c677bf (diff) | |
download | vyos-1x-ad69fb36201ee0930b76d80f0869284e26846991.tar.gz vyos-1x-ad69fb36201ee0930b76d80f0869284e26846991.zip |
configd: T2582: add scripts to include list for daemon
Diffstat (limited to 'src/conf_mode/system-options.py')
-rwxr-xr-x | src/conf_mode/system-options.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/conf_mode/system-options.py b/src/conf_mode/system-options.py index 0aacd19d8..6ac35a4ab 100755 --- a/src/conf_mode/system-options.py +++ b/src/conf_mode/system-options.py @@ -31,8 +31,11 @@ curlrc_config = r'/etc/curlrc' ssh_config = r'/etc/ssh/ssh_config' systemd_action_file = '/lib/systemd/system/ctrl-alt-del.target' -def get_config(): - conf = Config() +def get_config(config=None): + if config: + conf = config + else: + conf = Config() base = ['system', 'options'] options = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True) return options |