From: Frank Brehm Date: Mon, 26 Oct 2020 14:00:37 +0000 (+0100) Subject: Masking some logging output X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=dff6ed963c21ef69e77a988f21ab6fc0c806f2d6;p=pixelpark%2Fldap-migration.git Masking some logging output --- diff --git a/roles/base/tasks/consumers_per_db.yaml b/roles/base/tasks/consumers_per_db.yaml index d9b9f7d..40b10a9 100644 --- a/roles/base/tasks/consumers_per_db.yaml +++ b/roles/base/tasks/consumers_per_db.yaml @@ -29,7 +29,7 @@ shell: "ldapsearch -Q -Y EXTERNAL -H ldapi:/// -LLL -s base -b '{{ db_dn }}' -o ldif-wrap olcSyncrepl | grep -i '^olcSyncrepl'" changed_when: False ignore_errors: True - # no_log: True + no_log: True register: get_syncrepl - name: "Applying SyncRepl consumers for database '{{ database_name }}' ..." @@ -50,15 +50,6 @@ group: root mode: 0600 - - name: "Get content of applying SyncRepl consumers file" - shell: "cat '{{ syncrepl_file.path }}'" - register: content_syncrepl_file - changed_when: False - # no_log: True - - - name: "Show content of applying SyncRepl consumers file." - debug: msg={{ content_syncrepl_file.stdout_lines }} - - name: "Applying SyncRepl consumers file at the end ..." shell: "ldapmodify -Q -Y EXTERNAL -H ldapi:/// -f '{{ syncrepl_file.path }}'"