From c0d43f72efa3a709955ee1b5204b117dc8c1b461 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Tue, 2 May 2017 13:52:39 +0200 Subject: [PATCH] evolinx-base: no comma for postfix config --- evolinux-base/tasks/postfix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evolinux-base/tasks/postfix.yml b/evolinux-base/tasks/postfix.yml index 2ffc1558..9aad67e4 100644 --- a/evolinux-base/tasks/postfix.yml +++ b/evolinux-base/tasks/postfix.yml @@ -26,7 +26,7 @@ lineinfile: dest: /etc/postfix/main.cf state: present - line: "mydestination = {{ evolinux_fqdn }}, localhost.localdomain, , localhost" + line: "mydestination = {{ evolinux_fqdn }} localhost.localdomain localhost" regexp: '^mydestination' notify: reload postfix tags: @@ -35,7 +35,7 @@ - name: fetch users list shell: getent passwd | cut -d":" -f 1 | grep -v root check_mode: no - + register: non_root_users_list changed_when: False tags: