Refs #8025: Refactor-awx - Bacula task - no log true to hide stdout in more tasks

This commit is contained in:
Xavi Lleó 2024-10-22 12:16:03 +02:00
parent b19c768e3b
commit aa27df5ff0
1 changed files with 2 additions and 0 deletions

View File

@ -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