Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ansible/roles/dnf/tasks/custom-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
username: "{{ item.value.username | default(omit) }}"
state: "{{ item.value.state | default(omit)}}"
with_dict: "{{ dnf_custom_repos }}"
loop_control:
label: "{{ item.key }}"
register: register_dnf_command
retries: 3
delay: 10
Expand Down
3 changes: 3 additions & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ reno>=3.1.0 # Apache-2.0
sphinx>=2.0.0,!=2.1.0 # BSD
sphinxcontrib-svg2pdfconverter>=0.1.0 # BSD
whereto>=0.3.0 # Apache-2.0
# NOTE(priteau): pin setuptools
# https://setuptools.pypa.io/en/stable/history.html#v82-0-0
setuptools==81.0.0
11 changes: 11 additions & 0 deletions releasenotes/notes/dnf-loop-control-6e2c8ba1915d2631.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
security:
- |
Avoid leaking DNF repository username/password credentials in the Kayobe
output by adding loop control to print only the repository key.
`LP#2087938 <https://launchpad.net/bugs/2087938>`__
fixes:
- |
Avoid leaking DNF repository username/password credentials in the Kayobe
output by adding loop control to print only the repository key.
`LP#2087938 <https://launchpad.net/bugs/2087938>`__
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# NOTE(wszumski): pin setuptools
# https://setuptools.pypa.io/en/stable/history.html#v82-0-0
setuptools==81.0.0
pbr>=2.0 # Apache-2.0
Jinja2>3 # BSD
ansible>=8,<10 # GPLv3
Expand Down
Loading