diff options
author | Adam Williamson <awilliam@redhat.com> | 2024-11-29 17:19:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-29 17:19:07 +0100 |
commit | cf4276f560ce78fee6105792939251a5149f9429 (patch) | |
tree | bf01bae02c8b158a554632ebf51b0ff0f12d785a /lib | |
parent | ansible-test - fix coverage for test modules (#84366) (diff) | |
download | ansible-cf4276f560ce78fee6105792939251a5149f9429.tar.xz ansible-cf4276f560ce78fee6105792939251a5149f9429.zip |
package_facts: extend note about python3-rpm to cover Fedora 41+ (#84373)
Fedora 41 no longer has python3-rpm installed by default either,
so package_facts blows up on Fedora 41 hosts unless you make sure
python3-rpm is installed first. Not sure we can do a lot about
this besides extending this note.
Signed-off-by: Adam Williamson <awilliam@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ansible/modules/package_facts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/modules/package_facts.py b/lib/ansible/modules/package_facts.py index e1dc026093..595d3f5846 100644 --- a/lib/ansible/modules/package_facts.py +++ b/lib/ansible/modules/package_facts.py @@ -23,7 +23,7 @@ options: default: ['auto'] choices: auto: Depending on O(strategy), will match the first or all package managers provided, in order - rpm: For RPM based distros, requires RPM Python bindings, not installed by default on Suse (python3-rpm) + rpm: For RPM based distros, requires RPM Python bindings, not installed by default on Suse or Fedora 41+ (python3-rpm) yum: Alias to rpm dnf: Alias to rpm dnf5: Alias to rpm |