]> Frank Brehm's Git Trees - pixelpark/ldap-migration.git/commitdiff
Masking some logging output
authorFrank Brehm <frank.brehm@pixelpark.com>
Mon, 26 Oct 2020 14:00:37 +0000 (15:00 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Mon, 26 Oct 2020 14:00:37 +0000 (15:00 +0100)
roles/base/tasks/consumers_per_db.yaml

index d9b9f7daf2f33cf6280210ba669ed11c6dec8d90..40b10a9f5cf9e42cb2bfb34747b1d3cf86055585 100644 (file)
@@ -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 }}' ..."
       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 }}'"