update
This commit is contained in:
parent
b0e63bc5b5
commit
4e5be6bd2e
|
@ -6,8 +6,8 @@ subscribe_topic=lihai_lot_walnutpi_dev_1
|
|||
# 发布消息的主题
|
||||
publish_topic=camera_1
|
||||
info_topic=info_dev_1
|
||||
username=lihai_lot_land_1
|
||||
password=lihai_lot_land_1
|
||||
username=17378971117
|
||||
password=17378971117
|
||||
####################################
|
||||
# 设备2-32G
|
||||
[lihai_lot_walnutpi_dev_2]
|
||||
|
|
10
tool.py
10
tool.py
|
@ -60,11 +60,11 @@ def exec_sh(msg, client):
|
|||
client.publish(info_topic, payload=publish_payload(code=200, msg='reloading'), qos=0)
|
||||
subprocess.Popen([cmd], shell=True)
|
||||
return
|
||||
# subprocess.Popen([cmd], shell=True)
|
||||
p = subprocess.Popen([cmd], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
out, err = p.communicate()
|
||||
output = out.decode('utf-8').strip()
|
||||
client.publish(info_topic, payload=publish_payload(code=200, msg=output), qos=0)
|
||||
subprocess.Popen([cmd], shell=True)
|
||||
# p = subprocess.Popen([cmd], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
# out, err = p.communicate()
|
||||
# output = out.decode('utf-8').strip()
|
||||
# client.publish(info_topic, payload=publish_payload(code=200, msg=output), qos=0)
|
||||
|
||||
|
||||
def get_status(client):
|
||||
|
|
Loading…
Reference in New Issue