Commit 2fc4c454 authored by Emmanuel Kasper's avatar Emmanuel Kasper Committed by Dietmar Maurer

fix bug #706: Use comma to split vmid list when building the crontab vzdump command

parent 6b5e2725
...@@ -1279,7 +1279,7 @@ sub command_line { ...@@ -1279,7 +1279,7 @@ sub command_line {
my $cmd = "vzdump"; my $cmd = "vzdump";
if ($param->{vmid}) { if ($param->{vmid}) {
$cmd .= " " . join(' ', PVE::Tools::split_list($param->{vmid})); $cmd .= " " . join(',', PVE::Tools::split_list($param->{vmid}));
} }
foreach my $p (keys %$param) { foreach my $p (keys %$param) {
......
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