mirror of
git://git.proxmox.com/git/pve-access-control.git
synced 2025-01-07 17:17:56 +03:00
fix #3402: add Pool.Audit permission
add new user "PVEPoolUser" and add Pool.Audit to "PVEAuditor". Signed-off-by: Lorenz Stechauner <l.stechauner@proxmox.com>
This commit is contained in:
parent
8ac53236df
commit
6d048ad6fc
1
README
1
README
@ -96,6 +96,7 @@ privileges:
|
|||||||
VM.Config.Options: modify any other VM configuration
|
VM.Config.Options: modify any other VM configuration
|
||||||
|
|
||||||
Pool.Allocate: create/remove/modify a pool.
|
Pool.Allocate: create/remove/modify a pool.
|
||||||
|
Pool.Audit: view a pool
|
||||||
|
|
||||||
Datastore.Allocate: create/remove/modify a data store.
|
Datastore.Allocate: create/remove/modify a data store.
|
||||||
Datastore.AllocateSpace: allocate space on a datastore
|
Datastore.AllocateSpace: allocate space on a datastore
|
||||||
|
@ -819,8 +819,12 @@ my $privgroups = {
|
|||||||
admin => [
|
admin => [
|
||||||
'Pool.Allocate', # create/delete pools
|
'Pool.Allocate', # create/delete pools
|
||||||
],
|
],
|
||||||
user => [],
|
user => [
|
||||||
audit => [],
|
'Pool.Audit',
|
||||||
|
],
|
||||||
|
audit => [
|
||||||
|
'Pool.Audit',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user