mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-21 11:19:00 +00:00
CI: Replace Fedora 43 with 44 for devel (#11836)
* Replace Fedora 43 with 44 for devel in CI. * Adjust tests. * Adjust flatpak module to Fedora 44.
This commit is contained in:
parent
7884a3f2a2
commit
ef656cb9b6
8 changed files with 29 additions and 8 deletions
|
|
@ -238,7 +238,9 @@ def update_flat(module, binary, names, method, no_dependencies):
|
|||
command += ["--no-deps"]
|
||||
command += installed_flat_names
|
||||
stdout = _flatpak_command(module, module.check_mode, command)
|
||||
result["changed"] = True if module.check_mode else stdout.find("Nothing to do.") == -1
|
||||
result["changed"] = (
|
||||
True if module.check_mode else (stdout.find("Nothing to do.") == -1 and stdout.find("Nothing to update.") == -1)
|
||||
)
|
||||
|
||||
|
||||
def uninstall_flat(module, binary, names, method):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue