phc/entrypoint.sh
jblu c4ffcee3a3
All checks were successful
continuous-integration/drone/push Build is passing
changed to supercronic
2023-06-19 19:01:44 -05:00

10 lines
211 B
Bash

#!/bin/sh
CRON_CONFIG_FILE="/opt/crontab"
# CRON
get_env CRON
CRON="${CRON:-"5 * * * *"}"
echo "${CRON} sh /opt/phc.sh" >> "${CRON_CONFIG_FILE}"
exec supercronic -passthrough-logs -quiet "${CRON_CONFIG_FILE}"