update
This commit is contained in:
parent
2e8fe15fc7
commit
f9ef08b4b8
4
tool.py
4
tool.py
|
@ -23,9 +23,9 @@ def close_stream(client):
|
|||
|
||||
def exec_sh(msg, client):
|
||||
cmd = json.loads(msg.payload.decode('utf-8'))["data"]
|
||||
if cmd == "supervisorctl stop __mqtt__":
|
||||
if cmd == "supervisorctl stop __mqtt__" or cmd == "supervisorctl restart __mqtt__":
|
||||
return
|
||||
if cmd == "supervisorctl restart __mqtt__" or cmd == "supervisorctl reload":
|
||||
if cmd == "supervisorctl reload":
|
||||
subprocess.Popen([cmd], shell=True)
|
||||
return
|
||||
p = subprocess.Popen([cmd], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
|
|
Loading…
Reference in New Issue