Skip to content
Snippets Groups Projects
Commit d4aa54c6 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

style: don't log passwords (as recommended by linter)

parent 5dc79e04
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
when: when:
- item.value.state == "present" - item.value.state == "present"
- item.key != ansible_user # we cannot modify the user that is used to make the connection, because the Python process uses it - item.key != ansible_user # we cannot modify the user that is used to make the connection, because the Python process uses it
no_log: true
- name: lock HUMAN users - name: lock HUMAN users
ansible.builtin.user: ansible.builtin.user:
...@@ -67,6 +68,7 @@ ...@@ -67,6 +68,7 @@
when: when:
- item.value.state == "present" - item.value.state == "present"
- item.key != ansible_user # we cannot modify the user that is used to make the connection, because the Python process uses it - item.key != ansible_user # we cannot modify the user that is used to make the connection, because the Python process uses it
no_log: true
- name: lock ROBOT users - name: lock ROBOT users
ansible.builtin.user: ansible.builtin.user:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment