From 7e6e03144db155cc9ace82d2cc53a57428c0b59a Mon Sep 17 00:00:00 2001 From: Alexander Christoph Bihlmaier Date: Wed, 17 Mar 2021 18:43:08 +0100 Subject: [PATCH 1/3] no longer use python2 - fix for travis CI error --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e4bb391..c0b077e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ --- language: python -python: "2.7" # Use the new container infrastructure sudo: false From 0dfda88a5f4c76bdb1304f94bdaeacfd0471c390 Mon Sep 17 00:00:00 2001 From: Alexander Christoph Bihlmaier Date: Wed, 17 Mar 2021 18:49:43 +0100 Subject: [PATCH 2/3] Ansible Galaxy meta info provided: role name --- meta/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/main.yml b/meta/main.yml index 8488313..f925aee 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -1,6 +1,6 @@ --- - galaxy_info: + role_name: postfix author: arillso description: Ansible role for installing and Configuration Pstfix on installs RHEL/CentOS or Debian/Ubuntu. license: MIT From e5764e98d7a4dc0f62995144b766d90363244190 Mon Sep 17 00:00:00 2001 From: Alexander Christoph Bihlmaier Date: Wed, 17 Mar 2021 18:52:53 +0100 Subject: [PATCH 3/3] linting complained about literal-compare - conditional is true when postfix_relayhost is set --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 894da31..7a1eb44 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -42,7 +42,7 @@ owner: root group: root mode: 0600 - when: postfix_relayhost != false + when: postfix_relayhost notify: - postmap sasl_passwd - restart postfix