Merge "dnf: support exclude and includepkgs arguments"

This commit is contained in:
Zuul 2022-02-09 16:46:01 +00:00 committed by Gerrit Code Review
commit 112a08a37d
2 changed files with 10 additions and 0 deletions

View File

@ -9,7 +9,9 @@
gpgcheck: "{{ item.value.gpgcheck | default(omit)}}"
cost: "{{ item.value.cost | default(omit)}}"
enabled: "{{ item.value.enabled | default(omit)}}"
exclude: "{{ item.value.exclude | default(omit)}}"
gpgcakey: "{{ item.value.gpgcakey | default(omit)}}"
includepkgs: "{{ item.value.includepkgs | default(omit)}}"
metadata_expire: "{{ item.value.metadata_expire | default(omit)}}"
metalink: "{{ item.value.metalink | default(omit)}}"
mirrorlist: "{{ item.value.mirrorlist | default(omit)}}"

View File

@ -0,0 +1,8 @@
---
features:
- |
Adds support for the ``exclude`` and ``includepkgs`` options in custom DNF
repositories configured with ``dnf_custom_repos`` in ``dnf.yml``. See
`documentation of the yum_repository Ansible module
<https://docs.ansible.com/ansible/latest/collections/ansible/builtin/yum_repository_module.html>`__
for usage.