Backup scheduler role for user

srozanski

New Member
Nov 5, 2015
18
0
1
Poland
Hi,

In wep panel is feature:

PROXMOX WIKI (Scheduled Backup):

Backup jobs can be scheduled so that they are executed automatically on specific days and times, for selectable nodes and VMs/CTs.
This is quite configurable and can be done in the Datacenter -> Backup tab.
The job then will try backup all selected VMs on the specified date and time. If a single backup fails, it will be skipped, the error logged and the job will continue with the remaining services.​

Which role I should delegate to user to give him possibility of setting up scheduled backup from web panel. I want delegate the lowest rights as possible to get this goal.

Regards,
Szymon Różański
 
More details:

On site "http://pve.proxmox.com/pve2-api-doc/" is api viewer.

On path of backup "/cluster/backup" i can see needed permissions:
GET:
Check: ["perm","/",["Sys.Audit"]]
POST:
Check: ["perm","/",["Sys.Modify"]]​

When i give them both for backup user he has too high permissions. I want give him only backup tab for making scheduled backups. Can i give him sth like this:
GET:
Check: ["perm","/",["Sys.Audit.Backup"]]
POST:
Check: ["perm","/",["Sys.Modify.Backup"]]​

or

GET:
Check: ["perm","/cluster/backup",["Sys.Audit"]]
POST:
Check: ["perm","/cluster/backup",["Sys.Modify"]]
Is it possible in some way?