Merge "dnf: Add support for state parameter in custom repos"

This commit is contained in:
Zuul 2022-01-07 12:35:50 +00:00 committed by Gerrit Code Review
commit f8ec18fe43
2 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,7 @@
proxy_username: "{{ item.value.proxy_username | default(omit)}}"
repo_gpgcheck: "{{ item.value.repo_gpgcheck | default(omit)}}"
sslverify: "{{ item.value.sslverify | default(omit)}}"
state: "{{ item.value.state | default(omit)}}"
with_dict: "{{ dnf_custom_repos }}"
register: register_dnf_command
retries: 3

View File

@ -0,0 +1,5 @@
---
features:
- |
Add support for a ``state`` parameter in repositories listed in
``dnf_custom_repos``.