mirror of
https://git.proxmox.com/git/pve-guest-common
synced 2025-08-08 14:06:16 +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',
|
type => 'string',
|
||||||
description => "Compress dump file.",
|
description => "Compress dump file.",
|
||||||
optional => 1,
|
optional => 1,
|
||||||
enum => ['0', '1', 'gzip', 'lzo'],
|
enum => ['0', '1', 'gzip', 'lzo', 'zstd'],
|
||||||
default => '0',
|
default => '0',
|
||||||
},
|
},
|
||||||
pigz=> {
|
pigz=> {
|
||||||
@ -98,6 +98,13 @@ my $confdesc = {
|
|||||||
optional => 1,
|
optional => 1,
|
||||||
default => 0,
|
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 => {
|
quiet => {
|
||||||
type => 'boolean',
|
type => 'boolean',
|
||||||
description => "Be quiet.",
|
description => "Be quiet.",
|
||||||
|
Loading…
Reference in New Issue
Block a user