mirror of
https://github.com/containers/ansible-podman-collections.git
synced 2026-02-04 07:11:49 +00:00
* fix(podman_prune): set top-level changed status
The module was returning changed status inside nested dicts,
but Ansible expects it at the top level of the result.
Before: {"image": {"changed": true, ...}} -> Ansible sees changed=false
After: {"changed": true, "image": {...}} -> Ansible sees changed=true
Signed-off-by: Igor Belousov <igor-belousov@users.noreply.github.com>
* Update plugins/modules/podman_prune.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Signed-off-by: Igor Belousov <igor-belousov@users.noreply.github.com>
---------
Signed-off-by: Igor Belousov <igor-belousov@users.noreply.github.com>
Co-authored-by: Igor Belousov <igor-belousov@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| podman_container.py | ||
| podman_container_copy.py | ||
| podman_container_exec.py | ||
| podman_container_info.py | ||
| podman_containers.py | ||
| podman_export.py | ||
| podman_generate_systemd.py | ||
| podman_image.py | ||
| podman_image_info.py | ||
| podman_import.py | ||
| podman_load.py | ||
| podman_login.py | ||
| podman_login_info.py | ||
| podman_logout.py | ||
| podman_network.py | ||
| podman_network_info.py | ||
| podman_play.py | ||
| podman_pod.py | ||
| podman_pod_info.py | ||
| podman_prune.py | ||
| podman_runlabel.py | ||
| podman_save.py | ||
| podman_search.py | ||
| podman_secret.py | ||
| podman_secret_info.py | ||
| podman_system_connection.py | ||
| podman_system_connection_info.py | ||
| podman_system_info.py | ||
| podman_tag.py | ||
| podman_volume.py | ||
| podman_volume_info.py | ||