tv / start.sh
PXHero's picture
Update start.sh
f393ac5 verified
Raw
History Blame Contribute Delete
525 Bytes
#!/bin/bash
echo "首次执行IPTV源采集..."
bash /iptv.sh || true
echo "首次执行Clash订阅采集..."
bash /clash.sh || true
echo "配置定时任务:每30分钟执行一次IPTV采集,每4小时执行一次Clash采集"
echo "*/30 * * * * bash /iptv.sh >> /var/log/iptv_cron.log 2>&1" > /etc/crontabs/root
echo "0 */4 * * * bash /clash.sh >> /var/log/clash_cron.log 2>&1" >> /etc/crontabs/root
echo "后台启动定时服务"
crond -f -l 2 &
echo "启动Nginx服务,监听7860端口"
nginx -g "daemon off;"