Add qcow2.xz file format support

This commit is contained in:
2025-06-09 16:58:21 +02:00
parent b2529c250a
commit 759361d9f6
4 changed files with 56 additions and 19 deletions

View File

@ -137,6 +137,9 @@ pub const PROGRAM_COPY: &str = "/bin/cp";
/// Gzip program path
pub const PROGRAM_GZIP: &str = "/usr/bin/gzip";
/// XZ program path
pub const PROGRAM_XZ: &str = "/usr/bin/xz";
/// Bash program
pub const PROGRAM_BASH: &str = "/usr/bin/bash";