This commit is contained in:
xyj 2023-12-05 09:35:09 +08:00
parent 516b9bdfed
commit 43c281546f
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ 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
p = subprocess.Popen([cmd], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = p.communicate()