fix issue with missing secnode

This commit is contained in:
2022-09-16 17:45:18 +02:00
parent 1fe2e3353a
commit 78edd77ce1

View File

@ -108,7 +108,8 @@ def frappy_start(**services):
remove_cfg.append(secnode)
if secnode:
secnode('')
all_cfg[service] = secnode.get_info()
if secnode:
all_cfg[service] = secnode.get_info()
# check cfg is not used twice
for cfg in cfginfo.split(','):