[pve-devel] [PATCH pve-manager] Use comma to split vmid list when building the crontab vzdump command
Emmanuel Kasper
e.kasper at proxmox.com
Thu Sep 10 11:59:12 CEST 2015
This fixes: https://bugzilla.proxmox.com/show_bug.cgi?id=706
---
PVE/VZDump.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/PVE/VZDump.pm b/PVE/VZDump.pm
index 138986e..78ef6e6 100644
--- a/PVE/VZDump.pm
+++ b/PVE/VZDump.pm
@@ -1279,7 +1279,7 @@ sub command_line {
my $cmd = "vzdump";
if ($param->{vmid}) {
- $cmd .= " " . join(' ', PVE::Tools::split_list($param->{vmid}));
+ $cmd .= " " . join(',', PVE::Tools::split_list($param->{vmid}));
}
foreach my $p (keys %$param) {
--
2.1.4
More information about the pve-devel
mailing list