system: configd_ctl.py should be same as configctl

Historically both make sense but nothing calls configd_ctl.py
directly anymore so we can either leave it at that or merge
the code and behaviour into configctl.  (Or better yet set a
symlink to configctl).
This commit is contained in:
Franco Fichtner 2022-03-11 10:30:38 +01:00
parent e6d2cbef47
commit 321f3101d9

View File

@ -79,7 +79,7 @@ def exec_config_cmd(exec_command):
sock.close()
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser(prog="configctl")
parser.add_argument("-m", help="execute multiple arguments at once", action="store_true")
parser.add_argument("-e", help="use as event handler, execute command on receiving input", action="store_true")
parser.add_argument("-d", help="detach the execution of the command and return immediately", action="store_true")