From edcbf953ab9dd3a4cb86e81180ab6e3b18533b47 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 22 Oct 2019 11:52:28 +0200 Subject: [PATCH] fixup: VM statefile: pass volid not resolved path to vollist We cannot activate a path, only volume IDs with activate_volumes (duh) fixes commit 5c1d42b7f825fa124ff3701b32f9ecc011bece95 Signed-off-by: Thomas Lamprecht --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 7b225da7..3408898d 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -5403,7 +5403,7 @@ sub vm_start { push @$cmd, '-loadstate', $statefile; } else { my $statepath = PVE::Storage::path($storecfg, $statefile); - push @$vollist, $statepath; + push @$vollist, $statefile; push @$cmd, '-loadstate', $statepath; } } elsif ($paused) {