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/interfaces-macsec.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/interfaces-macsec.py')
-rwxr-xr-x | src/conf_mode/interfaces-macsec.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/conf_mode/interfaces-macsec.py b/src/conf_mode/interfaces-macsec.py index ca15212d4..2866ccc0a 100755 --- a/src/conf_mode/interfaces-macsec.py +++ b/src/conf_mode/interfaces-macsec.py @@ -35,12 +35,15 @@ airbag.enable() # XXX: wpa_supplicant works on the source interface wpa_suppl_conf = '/run/wpa_supplicant/{source_interface}.conf' -def get_config(): +def get_config(config=None): """ Retrive CLI config as dictionary. Dictionary can never be empty, as at least the interface name will be added or a deleted flag """ - conf = Config() + if config: + conf = config + else: + conf = Config() base = ['interfaces', 'macsec'] macsec = get_interface_dict(conf, base) |