]> git.proxmox.com Git - qemu-server.git/commit
fix #1570: fix template backup with pigz
authorDominik Csapak <d.csapak@proxmox.com>
Fri, 1 Dec 2017 10:43:23 +0000 (11:43 +0100)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Wed, 6 Dec 2017 13:54:00 +0000 (14:54 +0100)
commita2fab11a4696f5e5ed1f5f119ebf0abdeaee3ddb
tree5f0d928738dd98187fc9bddc6cb9b1081957113c
parentc449137a0465a4df195beeb54d61a5dc0a8a3682
fix #1570: fix template backup with pigz

when using pigz the resulting commandline would look like:

pigz -p 4>file

which resulted in pigz erroring out because it got no parameter for -p
(because the shell interpreted the 4>file as a file descriptor)

this patch adds a space so that the resulting line is
pigz -p 4 > file

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
Reviewed-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/VZDump/QemuServer.pm