evocheck: upstream release 23.04.01
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2791|3|2788|4|:+1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/237//ansiblelint">Evolix » ansible-roles » unstable #237</a>
gitea/ansible-roles/pipeline/head This commit looks good

This commit is contained in:
William Hirigoyen 2023-04-07 11:53:30 +02:00
parent 956e644ac4
commit 0c2e06de33
3 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
# Script to verify compliance of a Linux (Debian) server # Script to verify compliance of a Linux (Debian) server
# powered by Evolix # powered by Evolix
VERSION="23.04" VERSION="23.04.01"
readonly VERSION readonly VERSION
# base functions # base functions

View file

@ -4,7 +4,7 @@
# Script to verify compliance of a Linux (Debian) server # Script to verify compliance of a Linux (Debian) server
# powered by Evolix # powered by Evolix
VERSION="23.04" VERSION="23.04.01"
readonly VERSION readonly VERSION
# base functions # base functions
@ -151,10 +151,10 @@ check_postfix_mydestination() {
if ! grep mydestination /etc/postfix/main.cf | grep --quiet -E 'localhost([[:blank:]]|$)'; then if ! grep mydestination /etc/postfix/main.cf | grep --quiet -E 'localhost([[:blank:]]|$)'; then
failed "IS_POSTFIX_MYDESTINATION" "'localhost' s missing in Postfix mydestination option." failed "IS_POSTFIX_MYDESTINATION" "'localhost' s missing in Postfix mydestination option."
fi fi
if ! grep mydestination /etc/postfix/main.cf | grep --quiet -E 'localhost.localdomain'; then if ! grep mydestination /etc/postfix/main.cf | grep --quiet 'localhost\.localdomain'; then
failed "IS_POSTFIX_MYDESTINATION" "'localhost.localdomain' is missing in Postfix mydestination option." failed "IS_POSTFIX_MYDESTINATION" "'localhost.localdomain' is missing in Postfix mydestination option."
fi fi
if ! grep mydestination /etc/postfix/main.cf | grep --quiet -E 'localhost.$mydomain'; then if ! grep mydestination /etc/postfix/main.cf | grep --quiet 'localhost\.\$mydomain'; then
failed "IS_POSTFIX_MYDESTINATION" "'localhost.\$mydomain' is missing in Postfix mydestination option." failed "IS_POSTFIX_MYDESTINATION" "'localhost.\$mydomain' is missing in Postfix mydestination option."
fi fi
} }

View file

@ -4,7 +4,7 @@
# Script to verify compliance of a Linux (Debian) server # Script to verify compliance of a Linux (Debian) server
# powered by Evolix # powered by Evolix
VERSION="23.04" VERSION="23.04.01"
readonly VERSION readonly VERSION
# base functions # base functions