fix: entrypoint-llama.sh does not start cron daemon #195
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The agents-llama container uses docker/agents/entrypoint-llama.sh as its entrypoint. Unlike the standard entrypoint.sh (which starts cron), entrypoint-llama.sh runs a while-true poll loop but never starts the cron daemon.
This means:
Proposed solution
Add cron startup to entrypoint-llama.sh before the poll loop:
Also install the crontab from the project config, similar to how the standard entrypoint does it.
Affected files
Acceptance criteria