summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2024-03-31 10:51:35 +0200
committerFabian Groffen <grobian@gentoo.org>2024-03-31 10:51:35 +0200
commit29055666a0ad23b72e20081f40811b5202b445c7 (patch)
tree14695ff8c5873024c1ce1ea77bd117f1a68e435f
parentscripts/rsync-generation/mksnapshot: increase zstd compression level (diff)
downloadprefix-29055666a0ad23b72e20081f40811b5202b445c7.tar.gz
prefix-29055666a0ad23b72e20081f40811b5202b445c7.tar.bz2
prefix-29055666a0ad23b72e20081f40811b5202b445c7.zip
scripts/rsync-generation/mksnapshot: drop gzip snapshot
gzip compresses to around 75MB which is much higher than bzip2's 57MB The gzip snapshot was historically never used ever by the bootstrap script, it always used and hardcoded bz2. So don't bother creating a gzip variant. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rwxr-xr-xscripts/rsync-generation/mksnapshot.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/rsync-generation/mksnapshot.sh b/scripts/rsync-generation/mksnapshot.sh
index 66ad8a91ed..2fbdcfae0f 100755
--- a/scripts/rsync-generation/mksnapshot.sh
+++ b/scripts/rsync-generation/mksnapshot.sh
@@ -45,7 +45,6 @@ popd > /dev/null || exit 1
rm -Rf "${TMPDIR}"
COMPRS=(
- "gz:gzip -c -9"
"bz2:bzip2 -c -9"
"xz:xz -c -9"
"lz:lzip -c -9"