summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-08-18 22:44:35 -0700
committerZac Medico <zmedico@gentoo.org>2012-08-18 22:44:35 -0700
commit604eb9bd43ec035c4e26197ab21cba33b4faa8f9 (patch)
treee9002e5e34d8dc319599757e076b87d905743690 /misc
parent76e037f33eeaa4969bae13c6c23eda40566dca39 (diff)
downloadportage-604eb9bd43ec035c4e26197ab21cba33b4faa8f9.tar.gz
portage-604eb9bd43ec035c4e26197ab21cba33b4faa8f9.tar.bz2
portage-604eb9bd43ec035c4e26197ab21cba33b4faa8f9.zip
emerge-delta-webrsync: tweak "recompressing" msg
FEATURES=webrsync-gpg forces it to recompress in the foreground.
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/emerge-delta-webrsync3
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/emerge-delta-webrsync b/misc/emerge-delta-webrsync
index e237c7f13..102a99160 100755
--- a/misc/emerge-delta-webrsync
+++ b/misc/emerge-delta-webrsync
@@ -541,15 +541,16 @@ fi
unset need_last_sync
if [ "$verified" == "1" ]; then
- echo "recompressing. (backgrounding)"
need_last_sync="dar"
if [[ ${WEBSYNC_VERIFY_SIGNATURE} == 1 ]] ; then
# BUG: Signature verification will fail if the local bzip2
# program does not produce output that is perfectly identical
# to the bzip2 program used to compress the signed tar file.
+ echo "recompressing ..."
bzip2 -vk9 "${TMPDIR}/portage-${final_date}.tar"
check_file_signature "${DISTDIR}/portage-${final_date}.tar.bz2.gpgsig" "${TMPDIR}/portage-${final_date}.tar.bz2" || exit 1
else
+ echo "recompressing. (backgrounding)"
bzip2 -vk9 "${TMPDIR}/portage-${final_date}.tar" &
fi