mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2026-04-23 00:27:05 +08:00
11 lines
229 B
Bash
11 lines
229 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Init vars
|
|
if [[ -z "$SERVICE_CRON_OPTS" ]]; then SERVICE_CRON_OPTS=""; fi
|
|
|
|
source /opt/docker/bin/config.sh
|
|
|
|
includeScriptDir "/opt/docker/bin/service.d/cron.d/"
|
|
|
|
exec /usr/sbin/crond -f $SERVICE_CRON_OPTS
|