lzip compression support added. install lzip, zstd per default
This commit is contained in:
parent
ea1e2141e5
commit
641585a7bd
|
@ -89,6 +89,7 @@
|
||||||
- locales
|
- locales
|
||||||
- lsof
|
- lsof
|
||||||
- lvm2
|
- lvm2
|
||||||
|
- lzip
|
||||||
- mosh
|
- mosh
|
||||||
- mtr-tiny
|
- mtr-tiny
|
||||||
- ncdu
|
- ncdu
|
||||||
|
@ -109,6 +110,7 @@
|
||||||
- unzip
|
- unzip
|
||||||
- usrmerge
|
- usrmerge
|
||||||
- vim-nox
|
- vim-nox
|
||||||
|
- zstd
|
||||||
- '{{ [] if is_container else ["xfsdump", "xfsprogs"] }}'
|
- '{{ [] if is_container else ["xfsdump", "xfsprogs"] }}'
|
||||||
- '{{ needed_debs if needed_debs is defined else [] }}'
|
- '{{ needed_debs if needed_debs is defined else [] }}'
|
||||||
- '{{ logcompress_algo if logcompress_algo else [] }}'
|
- '{{ logcompress_algo if logcompress_algo else [] }}'
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
# vars file for system
|
# vars file for system
|
||||||
logcompress_compression_commands:
|
logcompress_compression_commands:
|
||||||
gzip: 'gzip -9'
|
|
||||||
bzip2: 'bzip2 -9'
|
bzip2: 'bzip2 -9'
|
||||||
xz: 'xz -9'
|
gzip: 'gzip -9'
|
||||||
|
lz: 'lz -9'
|
||||||
lz4: 'lz4 -9 --rm'
|
lz4: 'lz4 -9 --rm'
|
||||||
|
xz: 'xz -9'
|
||||||
zstd: 'zstd -19 --rm'
|
zstd: 'zstd -19 --rm'
|
||||||
|
|
Loading…
Reference in a new issue