remove timeouts from 'qemu-img snapshot' commands.

Those commands can take several minutes on larger files.
This commit is contained in:
Dietmar Maurer
2012-11-02 08:52:50 +01:00
parent 4ff42fd691
commit 3f13fd7dc3
3 changed files with 10 additions and 4 deletions

View File

@ -2,7 +2,7 @@ RELEASE=2.2
VERSION=2.0
PACKAGE=libpve-storage-perl
PKGREL=35
PKGREL=36
DESTDIR=
PREFIX=/usr

View File

@ -520,7 +520,7 @@ sub volume_snapshot {
my $cmd = ['/usr/bin/qemu-img', 'snapshot','-c', $snap, $path];
run_command($cmd, timeout => 30);
run_command($cmd);
return undef;
}
@ -534,7 +534,7 @@ sub volume_snapshot_rollback {
my $cmd = ['/usr/bin/qemu-img', 'snapshot','-a', $snap, $path];
run_command($cmd, timeout => 30);
run_command($cmd);
return undef;
}
@ -550,7 +550,7 @@ sub volume_snapshot_delete {
my $cmd = ['/usr/bin/qemu-img', 'snapshot','-d', $snap, $path];
run_command($cmd, timeout => 30);
run_command($cmd);
return undef;
}

View File

@ -1,3 +1,9 @@
libpve-storage-perl (2.0-36) unstable; urgency=low
* remove timeouts from 'qemu-img snapshot' commands.
-- Proxmox Support Team <support@proxmox.com> Fri, 02 Nov 2012 08:52:23 +0100
libpve-storage-perl (2.0-35) unstable; urgency=low
* remove hardcoded blowfish cipher