From f1291caa148e13d9cc05b7740ade2129fd26b4aa Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sun, 29 Jan 2023 18:51:33 +0200 Subject: [PATCH] remove comments --- tasks/configure_dbmail_users.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/tasks/configure_dbmail_users.yml b/tasks/configure_dbmail_users.yml index 15ee8e8..af53867 100644 --- a/tasks/configure_dbmail_users.yml +++ b/tasks/configure_dbmail_users.yml @@ -4,7 +4,6 @@ loop: "{{ dbmail_users }}" register: result failed_when: result.rc > 1 - #ignore_errors: true - name: Set user accounts password shell: "dbmail-users -c {{ item.username }} -w {{ item.password}} -p {{ item.password_type | default('sha512') }}" @@ -12,7 +11,6 @@ register: result failed_when: result.rc > 1 no_log: true - #ignore_errors: true - name: Link user accounts with emails shell: "dbmail-users -c {{ item.username }} -s {{ item.emails | join(',') }}"