1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-05-16 04:21:48 +00:00

Merge pull request #6398 from marvinruder/feat/skip-olefy

feat(olefy): Allow disabling Olefy
This commit is contained in:
FreddleSpl0it
2025-05-08 15:34:51 +02:00
committed by GitHub
8 changed files with 55 additions and 13 deletions

View File

@@ -994,6 +994,7 @@ PID=$!
echo "Spawned cert_checks with PID ${PID}"
BACKGROUND_TASKS+=(${PID})
if [[ "${SKIP_OLEFY}" =~ ^([nN][oO]|[nN])+$ ]]; then
(
while true; do
if ! olefy_checks; then
@@ -1005,6 +1006,7 @@ done
PID=$!
echo "Spawned olefy_checks with PID ${PID}"
BACKGROUND_TASKS+=(${PID})
fi
(
while true; do