fox-web-basic/rootfs/etc/fox-start.d/00_cron-fix.sh

8 lines
135 B
Bash
Raw Normal View History

2022-01-05 15:36:36 +00:00
#!/bin/sh
echo -n "Touching cron..."
touch /etc/crontab
find /etc/cron.d -maxdepth 1 -type f -exec bash -c "touch '{}'" \;
echo "OK"