Files
crane/entrypoint.sh
jblu 9763e239b2
All checks were successful
ci / docker (push) Successful in 44s
migrated to crond
2026-04-09 13:00:23 -05:00

8 lines
178 B
Bash

#!/bin/sh
CRON_CONFIG_FILE="/etc/crontabs/root"
echo "${CRON} python /opt/crane.py" >> $CRON_CONFIG_FILE
echo "@reboot python /opt/crane.py" >> $CRON_CONFIG_FILE
exec crond -f