Commit 90c352e7 authored by Dietmar Maurer's avatar Dietmar Maurer

fix openvz live migration

parent 4031f444
...@@ -189,6 +189,7 @@ sub phase1 { ...@@ -189,6 +189,7 @@ sub phase1 {
$cmd = [ 'vzctl', '--skiplock', 'chkpnt', $vmid, '--kill' ]; $cmd = [ 'vzctl', '--skiplock', 'chkpnt', $vmid, '--kill' ];
$self->cmd_quiet($cmd, errmsg => "Failed to kill container"); $self->cmd_quiet($cmd, errmsg => "Failed to kill container");
$cmd = [ 'vzctl', '--skiplock', 'umount', $vmid ]; $cmd = [ 'vzctl', '--skiplock', 'umount', $vmid ];
sleep(1); # hack: wait - else there are open files
$self->cmd_quiet($cmd, errmsg => "Failed to umount container"); $self->cmd_quiet($cmd, errmsg => "Failed to umount container");
} }
......
pve-manager (2.0-23) unstable; urgency=low
* fix openvz live migration
-- Proxmox Support Team <support@proxmox.com> Mon, 13 Feb 2012 09:28:25 +0100
pve-manager (2.0-22) unstable; urgency=low pve-manager (2.0-22) unstable; urgency=low
* fix lint errors * fix lint errors
......
...@@ -2,7 +2,7 @@ RELEASE=2.0 ...@@ -2,7 +2,7 @@ RELEASE=2.0
VERSION=2.0 VERSION=2.0
PACKAGE=pve-manager PACKAGE=pve-manager
PACKAGERELEASE=22 PACKAGERELEASE=23
BINDIR=${DESTDIR}/usr/bin BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5 PERLLIBDIR=${DESTDIR}/usr/share/perl5
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment