mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-06 02:30:32 -07:00
[PR #9223/6f87bf2b backport][stable-10] Fix incorrect key lookup (#9232)
Fix incorrect key lookup (#9223)
* Fix incorrect key lookup
* Create changelog fragment
(cherry picked from commit 6f87bf2bad
)
Co-authored-by: IamLunchbox <56757745+IamLunchbox@users.noreply.github.com>
This commit is contained in:
parent
b3f669a574
commit
859039c47a
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/9223-proxmox-backup-bugfixes.yml
Normal file
2
changelogs/fragments/9223-proxmox-backup-bugfixes.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- proxmox_backup - fix incorrect key lookup in vmid permission check (https://github.com/ansible-collections/community.general/pull/9223).
|
|
@ -325,7 +325,7 @@ class ProxmoxBackupAnsible(ProxmoxAnsible):
|
|||
if "/" in permissions.keys() and permissions["/"].get(
|
||||
"VM.Backup", 0) == 1:
|
||||
sufficient_permissions = True
|
||||
elif "/vms" in permissions.keys() and permissions["/"].get(
|
||||
elif "/vms" in permissions.keys() and permissions["/vms"].get(
|
||||
"VM.Backup", 0) == 1:
|
||||
sufficient_permissions = True
|
||||
elif pool and "/pool/" + pool in permissions.keys() and permissions["/pool/" + pool].get(
|
||||
|
|
Loading…
Add table
Reference in a new issue