From 195ac4d7e6fb81bd02f97b977d0b4651de1d10c2 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sat, 1 Mar 2025 11:30:52 +0100 Subject: [PATCH] [PR #9809/e39320c3 backport][stable-10] proxmox: fix status getter (#9817) proxmox: fix status getter (#9809) * proxmox: fix status getter get_lxc_status was missing a selection of the 'status' key * proxmox: add changelog fragment * proxmox: fix changelog fragment (cherry picked from commit e39320c3547b54adaad7d29bc7bdebdc08e8b52c) Co-authored-by: JL Euler --- changelogs/fragments/9809-proxmox-fix-status-getter.yml | 2 ++ plugins/modules/proxmox.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/9809-proxmox-fix-status-getter.yml diff --git a/changelogs/fragments/9809-proxmox-fix-status-getter.yml b/changelogs/fragments/9809-proxmox-fix-status-getter.yml new file mode 100644 index 0000000000..eef4ab072e --- /dev/null +++ b/changelogs/fragments/9809-proxmox-fix-status-getter.yml @@ -0,0 +1,2 @@ +bugfixes: + - proxmox - add missing key selection of ``'status'`` key to ``get_lxc_status`` (https://github.com/ansible-collections/community.general/issues/9696, https://github.com/ansible-collections/community.general/pull/9809). diff --git a/plugins/modules/proxmox.py b/plugins/modules/proxmox.py index 4f25b90ad0..035de02521 100644 --- a/plugins/modules/proxmox.py +++ b/plugins/modules/proxmox.py @@ -1655,7 +1655,7 @@ class ProxmoxLxcAnsible(ProxmoxAnsible): proxmox_node = self.proxmox_api.nodes(node_name) except Exception as e: self.module.fail_json(msg="Unable to retrieve node information: %s" % e) - return getattr(proxmox_node, self.VZ_TYPE)(vmid).status.current.get() + return getattr(proxmox_node, self.VZ_TYPE)(vmid).status.current.get()['status'] def format_vm_identifier(self, vmid, hostname): if vmid and hostname: