aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-02-06 22:37:30 +0100
committerMichał Górny <mgorny@gentoo.org>2016-02-06 22:37:30 +0100
commit5c2248b06bc188949f3d5c6a65c191e1306adbfe (patch)
treed261851985e6e2e06bf8015e65b17091990a824d /snapshots-create.sh
parentAdd bug no for pixz issue (diff)
downloadmastermirror-scripts-5c2248b06bc188949f3d5c6a65c191e1306adbfe.tar.gz
mastermirror-scripts-5c2248b06bc188949f3d5c6a65c191e1306adbfe.tar.bz2
mastermirror-scripts-5c2248b06bc188949f3d5c6a65c191e1306adbfe.zip
Disable lbzip2 & pbzip2 because of emerge-delta-webrsync issues, #573908
Diffstat (limited to 'snapshots-create.sh')
-rwxr-xr-xsnapshots-create.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/snapshots-create.sh b/snapshots-create.sh
index 5665fb9..2d1f241 100755
--- a/snapshots-create.sh
+++ b/snapshots-create.sh
@@ -54,7 +54,10 @@ fi
# Find fastest BZIP2
# lbzip2,pbzip2 default to multiple threads
-for BZIP2_PROG in lbzip2 pbzip2 bzip2 FAIL ; do
+# emerge-delta-webrsync relies on verifying signature of tarball after
+# re-compressing it with bzip2, therefore failing if the signature
+# was done on lbzip2 or pbzip2 compressed tarball, #573908
+for BZIP2_PROG in bzip2 FAIL ; do
[ -n "$(type $BZIP2_PROG 2>/dev/null)" ] && break
done
if [ $BZIP2_PROG == FAIL ]; then