mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-13 09:53:42 +00:00
allow setting ipconfigX with VM.Config.Cloudinit
these config keys only affect the cloudinit drive contents (and state of the guest inside the VM), they are not used anywhere on the hypervisor side, so they should not require VM.Config.Network (which allows a lot more, such as changing vNIC VLAN tags or the bridges they are connected to). Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
bda7ccb1c9
commit
46f3fc25d8
@ -631,9 +631,9 @@ my $check_vm_modify_config_perm = sub {
|
||||
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.PowerMgmt']);
|
||||
} elsif ($diskoptions->{$opt}) {
|
||||
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Disk']);
|
||||
} elsif ($opt =~ m/^(?:net|ipconfig)\d+$/) {
|
||||
} elsif ($opt =~ m/^net\d+$/) {
|
||||
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Network']);
|
||||
} elsif ($cloudinitoptions->{$opt}) {
|
||||
} elsif ($cloudinitoptions->{$opt} || $opt =~ m/^ipconfig\d+$/) {
|
||||
$rpcenv->check_vm_perm($authuser, $vmid, $pool, ['VM.Config.Cloudinit', 'VM.Config.Network'], 1);
|
||||
} elsif ($opt eq 'vmstate') {
|
||||
# the user needs Disk and PowerMgmt privileges to change the vmstate
|
||||
|
Loading…
Reference in New Issue
Block a user