Signed-off-by: Alexandre Derumier <aderum...@odiso.com>
---
 PVE/API2/Qemu.pm |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm
index c8cb9f3..f5a48ce 100644
--- a/PVE/API2/Qemu.pm
+++ b/PVE/API2/Qemu.pm
@@ -2153,12 +2153,14 @@ __PACKAGE__->register_method({
            };
            $item->{parent} = $d->{parent} if $d->{parent};
            $item->{snapstate} = $d->{snapstate} if $d->{snapstate};
+           $item->{template} = $d->{template} if $d->{template};
            push @$res, $item;
        }
 
        my $running = PVE::QemuServer::check_running($vmid, 1) ? 1 : 0;
        my $current = { name => 'current', digest => $conf->{digest}, running 
=> $running };
        $current->{parent} = $conf->{parent} if $conf->{parent};
+       $current->{template} = $conf->{template} if $conf->{template};
 
        push @$res, $current;
 
-- 
1.7.10.4

_______________________________________________
pve-devel mailing list
pve-devel@pve.proxmox.com
http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to