[actions] add 'exec' action (#5619)

This commit is contained in:
Mike Fährmann
2024-06-29 23:02:48 +02:00
parent c9860002ba
commit 84b3da54aa
3 changed files with 16 additions and 7 deletions

View File

@@ -80,6 +80,12 @@ def action_level(opts):
return _level
def action_exec(opts):
def _exec(_):
util.Popen(opts, shell=True).wait()
return _exec
def action_wait(opts):
def _wait(args):
input("Press Enter to continue")
@@ -110,12 +116,13 @@ def action_exit(opts):
ACTIONS = {
"print" : action_print,
"status" : action_status,
"level" : action_level,
"abort" : action_abort,
"terminate": action_terminate,
"restart" : action_restart,
"wait" : action_wait,
"exec" : action_exec,
"exit" : action_exit,
"level" : action_level,
"print" : action_print,
"restart" : action_restart,
"status" : action_status,
"terminate": action_terminate,
"wait" : action_wait,
}