summaryrefslogtreecommitdiff
path: root/changelogs/fragments/73072-dnf-skip-broken.yml
diff options
context:
space:
mode:
authorLRitzdorf <42657792+LRitzdorf@users.noreply.github.com>2022-06-30 10:16:00 -0600
committerGitHub <noreply@github.com>2022-06-30 12:16:00 -0400
commit6bcb494f8306615f2b8741dad23529fdcd94626c (patch)
tree72b08b88481867043110edee601e4dfccff4a82c /changelogs/fragments/73072-dnf-skip-broken.yml
parentf70cc2fb7e58d524977df0762b748ec93315eef5 (diff)
downloadansible-6bcb494f8306615f2b8741dad23529fdcd94626c.tar.gz
[dnf] Fix skip_broken, add test coverage (v2) (#78158)
* [dnf] Fix skip_broken, add test coverage Change: - skip_broken was set in config but not actually used in calls to base.install() - added a lot of test cases with specialized repo - got rid of external (docker repo) nobest test cases since the specialized repo works well for those too - Slight cleanup and adding comments in dnf module Test Plan: - ci_complete Tickets: - Fixes #73072 Original-author: Rick Elrod <rick@elrod.me> * Use a better test for checking results list ci_complete Signed-off-by: Rick Elrod <rick@elrod.me> Co-authored-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to 'changelogs/fragments/73072-dnf-skip-broken.yml')
-rw-r--r--changelogs/fragments/73072-dnf-skip-broken.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/changelogs/fragments/73072-dnf-skip-broken.yml b/changelogs/fragments/73072-dnf-skip-broken.yml
new file mode 100644
index 0000000000..c0c464642b
--- /dev/null
+++ b/changelogs/fragments/73072-dnf-skip-broken.yml
@@ -0,0 +1,4 @@
+bugfixes:
+ - dnf - The ``skip_broken`` option is now used in installs (https://github.com/ansible/ansible/issues/73072).
+ - dnf - The ``nobest`` option now also works for ``state=latest``.
+ - dnf - Condense a few internal boolean returns.