[pve-devel] [PATCH manager 1/2] get_filtered_vmlist: save VM conf in own subhash
Thomas Lamprecht
t.lamprecht at proxmox.com
Wed Mar 15 16:47:41 CET 2017
small refactoring in get_filtered_vmlist: save a VMs config in its
own subhash to avoid collisions with other data which we want to save
in the vmid list, for now this is only `type` but in the next patch
I want to save also the class
Signed-off-by: Thomas Lamprecht <t.lamprecht at proxmox.com>
---
PVE/API2/Nodes.pm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm
index 9511264..d78f49c 100644
--- a/PVE/API2/Nodes.pm
+++ b/PVE/API2/Nodes.pm
@@ -1248,7 +1248,7 @@ my $get_filtered_vmlist = sub {
return if !$templates && $class->is_template($conf);
return if !$ha_managed && PVE::HA::Config::vm_is_ha_managed($vmid);
- $res->{$vmid} = $conf;
+ $res->{$vmid}->{conf} = $conf;
$res->{$vmid}->{type} = $d->{type};
};
warn $@ if $@;
@@ -1268,7 +1268,7 @@ my $get_start_stop_list = sub {
my $resList = {};
foreach my $vmid (keys %$vmlist) {
- my $conf = $vmlist->{$vmid};
+ my $conf = $vmlist->{$vmid}->{conf};
next if $autostart && !$conf->{onboot};
--
2.1.4
More information about the pve-devel
mailing list