summaryrefslogtreecommitdiffstats
path: root/bin/chroot-run.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-11 10:42:35 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-11 10:42:35 +0200
commit69c250623b53c08a3c5677254d8b333ca6f7bcb5 (patch)
treed318c8386d833a6d08c0783cee3505e862071ccd /bin/chroot-run.sh
parentce073fe35ff43055812fdbeeb6304422190ccbb1 (diff)
downloadjenkins.debian.net-69c250623b53c08a3c5677254d8b333ca6f7bcb5.tar.xz
handle invalid release signatures more gracefully
Diffstat (limited to 'bin/chroot-run.sh')
-rwxr-xr-xbin/chroot-run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/chroot-run.sh b/bin/chroot-run.sh
index ef1ae089..31ca1ee2 100755
--- a/bin/chroot-run.sh
+++ b/bin/chroot-run.sh
@@ -57,7 +57,7 @@ bootstrap() {
echo "$(date -u ) - bootstraping $DISTRO into $CHROOT_TARGET now."
set +e
sudo debootstrap $BOOTSTRAP_OPTIONS $DISTRO $CHROOT_TARGET $MIRROR | tee $TMPLOG
- local RESULT=$(egrep "E: Couldn't download packages" $TMPLOG)
+ local RESULT=$(egrep "E: (Couldn't download packages|Invalid Release signature)" $TMPLOG)
rm $TMPLOG
set -e
if [ ! -z "$RESULT" ] ; then