# 挂载阿里云盘 webdav,这个写计划任务靠谱一些
*/1 * * * * rclone mount aliyunpan:/ /mnt/aliyunpan --cache-dir /tmp --allow-other --vfs-cache-mode writes --allow-non-empty --no-update-modtime
*/1 * * * * rclone mount aliyunpan:/MediaVodCenter /mnt/MediaVodCenter --cache-dir /tmp --allow-other --vfs-cache-mode writes --allow-non-empty --no-update-modtime
# 整机重启
15 5 * * * sleep 70 && echo "每天5点15分+70秒路由器自动重启" > /etc/banner && reboot
15 17 * * * sleep 70 && echo "每天17点15分+70秒路由器自动重启" > /etc/banner && reboot
# 重启dnsmasq
15 */3 * * * sleep 70 && echo "三小时重启一次dnsmasp" > /etc/banner && /etc/init.d/dnsmasq restart
|