1
0
mirror of https://github.com/moepman/acertmgr.git synced 2024-12-29 10:31:49 +01:00

handle correctly when no action is defined

This commit is contained in:
David Klaftenegger 2016-04-04 01:59:28 +02:00 committed by Markus Hauschild
parent db0afbf0b7
commit 025e238213

View File

@ -174,6 +174,8 @@ def complete_config(domainconfig, defaults):
for name, value in defaults.items():
if name not in domainconfig:
domainconfig[name] = value
if 'action' not in domainconfig:
domainconfig['action'] = None
return domainconfig
@ -214,4 +216,5 @@ if __name__ == "__main__":
# run post-update actions
for action in actions:
subprocess.call(action.split())
if action is not None:
subprocess.call(action.split())