mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-28 22:49:00 +00:00
flatpak: fix removal of runtimes (#11688)
* flatpak: fix removal of runtimes (issue #553)
The module was using `--app` when listing installed flatpaks for name
matching, which excluded runtimes from the results. This caused removal
of runtimes to fail even though `flatpak_exists()` correctly detected
them as installed (it lists both apps and runtimes).
Fix by dropping `--app` from the three matching functions so that both
apps and runtimes are searchable.
* flatpak: add changelog fragment for PR #11688
---------
(cherry picked from commit 8568594453)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
5 lines
346 B
YAML
5 lines
346 B
YAML
bugfixes:
|
|
- flatpak - fix removal of runtimes, which was broken because the module was filtering
|
|
the installed flatpak list to apps only, so runtimes could never be matched for
|
|
uninstallation (https://github.com/ansible-collections/community.general/issues/553,
|
|
https://github.com/ansible-collections/community.general/pull/11688).
|