From 419071f470cac1f36e6ea5076855974760e610b1 Mon Sep 17 00:00:00 2001 From: William Hirigoyen Date: Mon, 13 Mar 2023 15:09:41 +0100 Subject: [PATCH] php: fix error introduced in 33503e4538 (False evaluated as a string instead of boolean) --- CHANGELOG.md | 1 + php/tasks/main_bullseye.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23b98520..baafd147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,7 @@ The **patch** part changes is incremented if multiple releases happen the same m * clamav: set `MaxConnectionQueueLength` to its default value (200), custom (15) was way too small and caused recurrent connections fail in Postfix. * postfix (packmail only): disable `concurrency_failed_cohort_limit` for destination smtp-amavis to prevent the suspension of this destination when Amavis fails to answer. Indeed, we configure the suspension delay quite long in `minimal_backoff_time` (2h) and `maximal_backoff_time` (6h) to reduce the risk of ban from external SMTPs. * php: install using sury repositories on bullseye +* php: fix error introduced in 33503e4538 (False evaluated as a string instead of boolean) * postfix: remove unused "aliases_scope=sub" from virtual_aliases.cf (it generated warnings) * userlogrotate: fix bug introduced in commit 2e54944a246 (rotated files were not zipped) * userlogrotate: skip zipping if .gz log already exists (prevents interactive question) diff --git a/php/tasks/main_bullseye.yml b/php/tasks/main_bullseye.yml index d577ea5b..4cb185b7 100644 --- a/php/tasks/main_bullseye.yml +++ b/php/tasks/main_bullseye.yml @@ -4,7 +4,7 @@ set_fact: php_version: "7.4" when: - - php_sury_enable == 'False' + - php_sury_enable == False check_mode: no - name: "Set variables (Debian 11)"