diff --git a/roles/debian-base/tasks/bacula.yml b/roles/debian-base/tasks/bacula.yml index 7118b04..3958dbd 100644 --- a/roles/debian-base/tasks/bacula.yml +++ b/roles/debian-base/tasks/bacula.yml @@ -7,9 +7,11 @@ src: /etc/bacula/common_default_passwords register: file_content - name: Going to text plane + no_log: true set_fact: file_content_decoded: "{{ file_content.content | b64decode }}" - name: Extracting passwords + no_log: true set_fact: passwords: "{{ file_content_decoded.splitlines() | select('match', '^[^#]') | map('regex_replace', '^([^=]+)=(.+)$', '\\1:\\2') | list }}" - name: Initialize password dictionary