mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-10-06 21:02:12 +00:00
deactivate volumes if vm start command fails
prevents volumes to be active when they are not actually in use this is a cleanup of Dhaussy Alexandre's patch from 02/15/2016 Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
020d4cbb78
commit
d81508fbb9
@ -4174,8 +4174,12 @@ sub vm_start {
|
||||
|
||||
eval { run_command($cmd, timeout => $statefile ? undef : 30,
|
||||
umask => 0077); };
|
||||
my $err = $@;
|
||||
|
||||
if (my $err = $@) {
|
||||
# deactivate volumes if start fails
|
||||
eval { PVE::Storage::deactivate_volumes($storecfg, $vollist); };
|
||||
die "start failed: $err" if $err;
|
||||
}
|
||||
|
||||
print "migration listens on $migrate_uri\n" if $migrate_uri;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user