php: fix error introduced in 33503e4538 (False evaluated as a string instead of boolean)
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |4770|6|4764|5|:-1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/202//ansiblelint">Evolix » ansible-roles » unstable #202</a>
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
William Hirigoyen 2023-03-13 15:09:41 +01:00
parent 015a1bfec7
commit 419071f470
2 changed files with 2 additions and 1 deletions

View file

@ -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)

View file

@ -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)"