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