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/http-api.py | |
| parent | 050f16e5c92ebb341913942ebedc6fa0c2c677bf (diff) | |
| download | veeos-1x-ad69fb36201ee0930b76d80f0869284e26846991.tar.gz veeos-1x-ad69fb36201ee0930b76d80f0869284e26846991.zip | |
configd: T2582: add scripts to include list for daemon
Diffstat (limited to 'src/conf_mode/http-api.py')
| -rwxr-xr-x | src/conf_mode/http-api.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/conf_mode/http-api.py b/src/conf_mode/http-api.py index b8a084a40..472eb77e4 100755 --- a/src/conf_mode/http-api.py +++ b/src/conf_mode/http-api.py @@ -39,7 +39,7 @@ dependencies = [ 'https.py', ] -def get_config(): +def get_config(config=None): http_api = deepcopy(vyos.defaults.api_data) x = http_api.get('api_keys') if x is None: @@ -48,7 +48,11 @@ def get_config(): default_key = x[0] keys_added = False - conf = Config() + if config: + conf = config + else: + conf = Config() + if not conf.exists('service https api'): return None else: |
