Make sending the output of the dist command configurable
This commit is contained in:
parent
e2682615ae
commit
96dd71bbdd
|
@ -3,4 +3,5 @@
|
|||
*.pem
|
||||
config.json
|
||||
pool.json
|
||||
dist.sh
|
||||
env/
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"ConnectOnCreate": false,
|
||||
"HighlightNotifications": true,
|
||||
"DistEnabled": true,
|
||||
"SendDistOutput": false,
|
||||
"Password": "s",
|
||||
"Default": {
|
||||
"password": null,
|
||||
|
|
|
@ -471,7 +471,10 @@ class Helper(object):
|
|||
elif cmd == "dist":
|
||||
if config["DistEnabled"]:
|
||||
rtrn = run(["./dist.sh"], shell=True, stdout=PIPE)
|
||||
info("Exit code: %s -- Stdout: %s" % (rtrn.returncode, rtrn.stdout))
|
||||
if config["SendDistOutput"]:
|
||||
info("Exit code: %s -- Stdout: %s" % (rtrn.returncode, rtrn.stdout))
|
||||
else:
|
||||
info("Exit code: %s" % rtrn.returncode)
|
||||
else:
|
||||
failure("The dist command is not enabled")
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue