5
0
mirror of git://git.proxmox.com/git/pve-access-control.git synced 2025-01-03 01:17:55 +03:00

perms: fix wrong /pools entry in default set of ACL paths

/pools is not an allowed ACL path, so this would add a bogus entry into the
effective permissions in case something got propagated from /.

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2023-11-08 11:29:29 +01:00 committed by Thomas Lamprecht
parent b8a52eac77
commit 3d7afd6f3e

View File

@ -242,7 +242,7 @@ sub get_effective_permissions {
'/access' => 1,
'/access/groups' => 1,
'/nodes' => 1,
'/pools' => 1,
'/pool' => 1,
'/sdn' => 1,
'/storage' => 1,
'/vms' => 1,