mirror of
https://git.proxmox.com/git/pve-guest-common
synced 2025-08-03 18:09:07 +00:00
Fix: #2124 add zstd support
Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
This commit is contained in:
parent
6f69f21de7
commit
e8ca21371f
@ -88,7 +88,7 @@ my $confdesc = {
|
||||
type => 'string',
|
||||
description => "Compress dump file.",
|
||||
optional => 1,
|
||||
enum => ['0', '1', 'gzip', 'lzo'],
|
||||
enum => ['0', '1', 'gzip', 'lzo', 'zstd'],
|
||||
default => '0',
|
||||
},
|
||||
pigz=> {
|
||||
@ -98,6 +98,13 @@ my $confdesc = {
|
||||
optional => 1,
|
||||
default => 0,
|
||||
},
|
||||
zstd => {
|
||||
type => "integer",
|
||||
description => "Zstd threads. N=0 uses half of the available cores,".
|
||||
" N>0 uses N as thread count.",
|
||||
optional => 1,
|
||||
default => 1,
|
||||
},
|
||||
quiet => {
|
||||
type => 'boolean',
|
||||
description => "Be quiet.",
|
||||
|
Loading…
Reference in New Issue
Block a user