Added no_logs

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-16 01:41:37 +02:00
parent f0b323afee
commit 2b7950920c
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,7 @@
base_domain: "{{ base_domain }}"
matomo_verification_url: "{{ matomo_verification_url }}"
when: MODE_DEBUG | bool
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
- name: "Check if site {{ domain }} is allready registered at Matomo"
uri:
@ -22,6 +23,7 @@
status_code: 200
validate_certs: yes
register: site_check
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
- name: Set matomo_site_id to Null
set_fact:
@ -44,6 +46,7 @@
validate_certs: yes
register: add_site
when: "matomo_site_id is not defined or matomo_site_id is none"
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
- name: Set fact for site ID if site was added
set_fact:

View File

@ -8,6 +8,7 @@
chdir: "{{ mailu_compose_dir }}"
register: mailu_tokens_cli
changed_when: false
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
- name: "Extract existing token info for '{{ mailu_user_key }};{{ mailu_user_name }}'"
set_fact:
@ -33,6 +34,7 @@
- mailu_user_existing_token.id is defined
register: mailu_token_delete
changed_when: mailu_token_delete.rc == 0
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
- name: "Create API token for '{{ mailu_user_key }};{{ mailu_user_name }}' if no local token defined"
command: >-
@ -50,6 +52,7 @@
when: users[mailu_user_key].mailu_token is not defined
register: mailu_token_creation
changed_when: mailu_token_creation.rc == 0
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
- name: "Set mailu_token for '{{ mailu_user_key }};{{ mailu_user_name }}' in users dict if newly created"
set_fact:
@ -65,3 +68,4 @@
}, recursive=True)
}}
when: users[mailu_user_key].mailu_token is not defined
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"