This commit is contained in:
xyj 2024-01-06 14:17:04 +08:00
parent 3bee31fcbd
commit 46e5121807
3 changed files with 3 additions and 8 deletions

View File

@ -1,7 +1,10 @@
#!/bin/bash
set -e
sudo crontab -r
sudo crontab -l > cron.cron
echo "0 */1 * * * /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
echo "*/15 * * * * /usr/bin/python /home/pi/lot_manager/delete_than20G.py" >> cron.cron
sudo crontab cron.cron
sudo systemctl restart cron.service
sudo rm -rf cron.cron

View File

@ -1,9 +1,5 @@
# 每天00分执行
0 0 * * * /usr/bin/python /home/pi/lot_manager/delete_lot_data_3_days.py
# 每天0800分执行
0 8 * * * sudo /usr/bin/python /home/pi/lot_manager/open_led.py
# 每天1800分执行
0 18 * * * sudo /usr/bin/python /home/pi/lot_manager/close_led.py
# 针对32G内存卡的定时额外加这个
# 每隔15分钟进行
*/15 * * * * /usr/bin/python /home/pi/lot_manager/delete_than20G.py

View File

@ -3,7 +3,3 @@
0 * * * * /usr/bin/bash /home/pi/lot_manager/bash/cron_delete_mp4.sh
# 每天00分执行
0 0 * * * /usr/bin/python /home/pi/lot_manager/delete_lot_data_3_days.py
# 每天0800分执行
0 8 * * * sudo /usr/bin/python /home/pi/lot_manager/open_led.py
# 每天1800分执行
0 18 * * * sudo /usr/bin/python /home/pi/lot_manager/close_led.py