We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96c7e3f + 34b7297 commit 00bd798Copy full SHA for 00bd798
2 files changed
ansible/roles/dnf/tasks/custom-repo.yml
@@ -26,6 +26,8 @@
26
username: "{{ item.value.username | default(omit) }}"
27
state: "{{ item.value.state | default(omit)}}"
28
with_dict: "{{ dnf_custom_repos }}"
29
+ loop_control:
30
+ label: "{{ item.key }}"
31
register: register_dnf_command
32
retries: 3
33
delay: 10
releasenotes/notes/dnf-loop-control-6e2c8ba1915d2631.yaml
@@ -0,0 +1,11 @@
1
+---
2
+security:
3
+ - |
4
+ Avoid leaking DNF repository username/password credentials in the Kayobe
5
+ output by adding loop control to print only the repository key.
6
+ `LP#2087938 <https://launchpad.net/bugs/2087938>`__
7
+fixes:
8
9
10
11
0 commit comments