13 lines
271 B
Plaintext
13 lines
271 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
CRON_FILE=/config/cron.txt
|
|
|
|
if [ -f "$CRON_FILE" ]; then
|
|
. $CRON_FILE
|
|
else
|
|
echo "[crond-setup] No cron definition found..."
|
|
echo "[crond-setup] By default, cronjob will run hourly at minute 5 unless cron file is configured."
|
|
fi
|
|
|
|
crond -f
|