diff options
author | Brian Coca <bcoca@users.noreply.github.com> | 2024-11-12 14:36:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-12 14:36:26 +0100 |
commit | e404bc17f7551281c7019d7373d59a95ff1c8723 (patch) | |
tree | b5f7824edca567ec5f9e543ae3add38178654cdd /changelogs/fragments | |
parent | Fix runas become SYSTEM logic (#84280) (diff) | |
download | ansible-e404bc17f7551281c7019d7373d59a95ff1c8723.tar.xz ansible-e404bc17f7551281c7019d7373d59a95ff1c8723.zip |
package_facts fix empty packages on foreign mgr (#83855)
* package_facts fix empty packages on foreign mgr
return the first package manager that provides output
add tests with fake rpm on apt machines
Diffstat (limited to 'changelogs/fragments')
-rw-r--r-- | changelogs/fragments/package_facts_fix.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelogs/fragments/package_facts_fix.yml b/changelogs/fragments/package_facts_fix.yml new file mode 100644 index 0000000000..f1ffbf4d64 --- /dev/null +++ b/changelogs/fragments/package_facts_fix.yml @@ -0,0 +1,2 @@ +bugfixes: + - package_facts module when using 'auto' will return the first package manager found that provides an output, instead of just the first one, as this can be foreign and not have any packages. |