From 8e42c3598c131602b5f2888f77d1a115bfc87669 Mon Sep 17 00:00:00 2001 From: nwithan8 Date: Sat, 9 Dec 2023 01:23:26 -0700 Subject: [PATCH] - Remove testing code --- entrypoint.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index b8376ac..ff8d47e 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,7 +4,7 @@ mkdir -p /etc/cron.d # Read cron schedule from environment variable -CRON_SCHEDULE=${CRON_SCHEDULE:-"* * * * *"} # Default to midnight every day if not supplied +CRON_SCHEDULE=${CRON_SCHEDULE:-"0 0 * * *"} # Default to midnight every day if not supplied echo "Cron schedule: $CRON_SCHEDULE" @@ -15,8 +15,6 @@ else DRY_RUN_FLAG="" fi -DRY_RUN_FLAG="--dry-run" - echo "Dry run flag: $DRY_RUN_FLAG" # Schedule cron job with supplied cron schedule