Commit 89c7c4ea authored by Dietmar Maurer's avatar Dietmar Maurer

fix vzdump parameter parser (allow --stdout)

parent 6c2bea22
...@@ -1227,7 +1227,7 @@ sub command_line { ...@@ -1227,7 +1227,7 @@ sub command_line {
} }
foreach my $p (keys %$param) { foreach my $p (keys %$param) {
next if $p eq 'id' || $p eq 'vmid' || $p eq 'starttime' || $p eq 'dow'; next if $p eq 'id' || $p eq 'vmid' || $p eq 'starttime' || $p eq 'dow' || $p eq 'stdout';
my $v = $param->{$p}; my $v = $param->{$p};
my $pd = $confdesc->{$p} || die "no such vzdump option '$p'\n"; my $pd = $confdesc->{$p} || die "no such vzdump option '$p'\n";
if ($p eq 'exclude-path') { if ($p eq 'exclude-path') {
......
pve-manager (2.1-3) unstable; urgency=low
* fix vzdump parameter parser (allow --stdout)
-- Proxmox Support Team <support@proxmox.com> Wed, 02 May 2012 11:12:56 +0200
pve-manager (2.1-2) unstable; urgency=low pve-manager (2.1-2) unstable; urgency=low
* set apache directory access options for all used dirs * set apache directory access options for all used dirs
......
...@@ -2,7 +2,7 @@ RELEASE=2.1 ...@@ -2,7 +2,7 @@ RELEASE=2.1
VERSION=2.1 VERSION=2.1
PACKAGE=pve-manager PACKAGE=pve-manager
PACKAGERELEASE=2 PACKAGERELEASE=3
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