It would be a good idea to be able to modify the range of IDs that a VM can take.
I see that the range is fixed in code (/usr/share/perl5/PVE/API2/Cluster.pm) :
Thanks
I see that the range is fixed in code (/usr/share/perl5/PVE/API2/Cluster.pm) :
Perl:
for (my $i = 100; $i < 10000; $i++) {
return $i if !defined($idlist->{$i});
}
Thanks