ignore -tdf (avoid kvm warning) - this is no longer needed

This commit is contained in:
Dietmar Maurer 2012-02-13 11:18:09 +01:00
parent 3e21388903
commit da21653bfb
3 changed files with 10 additions and 3 deletions

View File

@ -2,7 +2,7 @@ RELEASE=2.0
VERSION=2.0
PACKAGE=qemu-server
PKGREL=15
PKGREL=16
DESTDIR=
PREFIX=/usr

View File

@ -287,7 +287,7 @@ EODESC
tdf => {
optional => 1,
type => 'boolean',
description => "Enable/disable time drift fix.",
description => "Enable/disable time drift fix. This is ignored for kvm versions newer that 1.0 (not needed anymore).",
default => 1,
},
localtime => {
@ -2021,7 +2021,8 @@ sub config_to_command {
# time drift fix
my $tdf = defined($conf->{tdf}) ? $conf->{tdf} : $defaults->{tdf};
push @$cmd, '-tdf' if $tdf;
# ignore - no longer supported by newer kvm
# push @$cmd, '-tdf' if $tdf;
my $nokvm = defined($conf->{kvm}) && $conf->{kvm} == 0 ? 1 : 0;

View File

@ -1,3 +1,9 @@
qemu-server (2.0-16) unstable; urgency=low
* ignore -tdf (avoid kvm warning) - this is no longer needed
-- Proxmox Support Team <support@proxmox.com> Mon, 13 Feb 2012 11:18:01 +0100
qemu-server (2.0-15) unstable; urgency=low
* online migration fix: close tunnel later, wait for connection close