allow to suspend/resume VM during backup

bump version to 2.3-7
This commit is contained in:
Dietmar Maurer 2013-01-17 10:25:39 +01:00
parent 19599cd903
commit 051347aab2
3 changed files with 9 additions and 3 deletions

View File

@ -2,7 +2,7 @@ RELEASE=2.3
VERSION=2.3
PACKAGE=qemu-server
PKGREL=6
PKGREL=7
DESTDIR=
PREFIX=/usr

View File

@ -3218,7 +3218,7 @@ sub vm_suspend {
my $conf = load_config($vmid);
check_lock($conf) if !$skiplock;
check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
vm_mon_cmd($vmid, "stop");
});
@ -3231,7 +3231,7 @@ sub vm_resume {
my $conf = load_config($vmid);
check_lock($conf) if !$skiplock;
check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
vm_mon_cmd($vmid, "cont");
});

View File

@ -1,3 +1,9 @@
qemu-server (2.3-7) unstable; urgency=low
* allow to suspend/resume VM during backup
-- Proxmox Support Team <support@proxmox.com> Thu, 17 Jan 2013 10:25:17 +0100
qemu-server (2.3-6) unstable; urgency=low
* fix bug #315: cancel backup before stopping the VM