You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
crontab feature was never implemented to support environment variables. As it looks, the container will never start cron because the crontab file never contains uncommented lines.
Suggestion
Support CRONTAB_xxxx variables to append lines to crontab file, before starting cron
for var in ${!CRONTAB_@}; do
eval 'echo "$'$var'" >> /ark/config/crontab';
done
The text was updated successfully, but these errors were encountered:
Description of Issue
crontab
feature was never implemented to support environment variables. As it looks, the container will never startcron
because thecrontab
file never contains uncommented lines.Suggestion
Support
CRONTAB_xxxx
variables to append lines tocrontab
file, before startingcron
The text was updated successfully, but these errors were encountered: