From adc33cfd6ed9d4f2b741de58ce781dd68924e634 Mon Sep 17 00:00:00 2001 From: Santeri Hurnanen Date: Fri, 11 Oct 2024 14:41:53 +0300 Subject: [PATCH] UHF-10354: Remove base.sh --- docker/openshift/crons/base.sh | 41 ---------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 docker/openshift/crons/base.sh diff --git a/docker/openshift/crons/base.sh b/docker/openshift/crons/base.sh deleted file mode 100644 index 358f95d1..00000000 --- a/docker/openshift/crons/base.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash - -source /init.sh - -echo "Starting cron: $(date)" - -# You can add any additional cron "daemons" here: -# -# exec "/crons/some-command.sh" & -# -# Example cron (docker/openshift/crons/some-command.sh): -# @code -# #!/bin/bash -# while true -# do -# drush some-command -# sleep 600 -# done -# @endcode - -# Uncomment this to enable TPR migration cron -#exec "/crons/migrate-tpr.sh" & -# Uncomment this to enable Varnish purge cron -exec "/crons/purge-queue.sh" & -# Uncomment this to enable automatic translation updates. - exec "/crons/update-translations.sh" & -# Uncomment this to enable content scheduler -exec "/crons/content-scheduler.sh" & -# Job listing migration cron -exec "/crons/migrate-job-listings.sh" & -exec "/crons/migrate-changed-job-listings.sh" & -exec "/crons/pubsub.sh" & -exec "/crons/linked-events.sh" & - -while true -do - echo "Running cron: $(date)\n" - drush cron - # Sleep for 10 minutes. - sleep 600 -done