update
This commit is contained in:
parent
add148ffca
commit
73e0ba73ca
|
@ -6,8 +6,8 @@ user=pi
|
|||
autostart=true
|
||||
;失败重启
|
||||
autorestart=true
|
||||
;每隔一分钟执行一次
|
||||
interval=60
|
||||
;重启次数
|
||||
restart_times=3
|
||||
redirect_stderr=true
|
||||
stopsignal=TERM
|
||||
stopasgroup=True
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
set -e
|
||||
sudo crontab -r
|
||||
sudo crontab -l > cron.cron
|
||||
echo "*/1 * * * * /usr/bin/bash /home/pi/lot_manager/conf/example/bash/start_dataupload_internal_one_hour.sh" >> cron.cron
|
||||
echo "*/2 * * * * /usr/bin/bash /home/pi/lot_manager/conf/example/bash/start_dataupload_internal_one_hour.sh" >> cron.cron
|
||||
echo "0 0 * * * /usr/bin/python /home/pi/lot_manager/delete_lot_data_3_days.py" >> cron.cron
|
||||
# 64G的才加
|
||||
echo "0 * * * * /usr/bin/bash /home/pi/lot_manager/bash/cron_delete_mp4.sh" >> cron.cron
|
||||
|
|
|
@ -196,9 +196,9 @@ def get_data():
|
|||
client.publish(publish_topic, payload=json.dumps(data, ensure_ascii=False), qos=0)
|
||||
add(t2)
|
||||
# 运行一次就把这个程序关掉
|
||||
subprocess.Popen(
|
||||
["/usr/bin/bash /home/pi/lot_manager/conf/example/bash/stop_dataupload_internal_one_hour.sh"],
|
||||
shell=True)
|
||||
# subprocess.Popen(
|
||||
# ["/usr/bin/bash /home/pi/lot_manager/conf/example/bash/stop_dataupload_internal_one_hour.sh"],
|
||||
# shell=True)
|
||||
except Exception as e:
|
||||
# print(e)
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue