Compare commits

..

2 Commits

Author SHA1 Message Date
jblu 2ed1f0ba5c Merge pull request 'fixed crontab' (#27) from dev-fix-crontab into main
ci / docker (push) Successful in 38s
Reviewed-on: #27
2026-04-10 16:55:55 -05:00
jblu 42bcf38fb7 fixed crontab
ci / docker (push) Successful in 38s
2026-04-10 16:54:04 -05:00
+2 -2
View File
@@ -2,7 +2,7 @@
CRON_CONFIG_FILE="/etc/crontabs/root"
echo "${CRON} python /opt/crane.py" > $CRON_CONFIG_FILE
echo "@reboot python /opt/crane.py" >> $CRON_CONFIG_FILE
grep -qF '${CRON} python /opt/crane.py' $CRON_CONFIG_FILE ||echo "${CRON} python /opt/crane.py" >> $CRON_CONFIG_FILE
grep -qF '@reboot' $CRON_CONFIG_FILE || echo "@reboot python /opt/crane.py" >> $CRON_CONFIG_FILE
exec crond -f