This commit is contained in:
Dietmar Maurer 2011-10-05 10:16:20 +02:00
parent 9f91ff0281
commit be62c45cf9
3 changed files with 9 additions and 10 deletions

View File

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

View File

@ -633,16 +633,9 @@ __PACKAGE__->register_method({
my $qmstr = join(' ', @$qmcmd);
# also redirect stderr (else we get RFB protocol errors)
my @cmd = ('/bin/nc', '-l', '-p', $port, '-w', $timeout, '-c', "$qmstr 2>/dev/null");
my $cmd = ['/bin/nc', '-l', '-p', $port, '-w', $timeout, '-c', "$qmstr 2>/dev/null"];
my $cmdstr = join(' ', @cmd);
syslog('info', "CMD3: $cmdstr");
if (system(@cmd) != 0) {
my $msg = "VM $vmid vnc proxy failed - $?";
syslog('err', $msg);
return;
}
PVE::Tools::run_command($cmd);
return;
};

View File

@ -1,3 +1,9 @@
qemu-server (2.0-2) unstable; urgency=low
* cleanups
-- Proxmox Support Team <support@proxmox.com> Wed, 05 Oct 2011 10:15:37 +0200
qemu-server (2.0-1) unstable; urgency=low
* see Changelog for details