summaryrefslogtreecommitdiffstats
path: root/bin/chroot-installation.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-04-08 10:57:01 +0200
committerHolger Levsen <holger@layer-acht.org>2017-04-08 10:57:01 +0200
commit629e72f36cdc57eaf36012a1f9131406384f04b2 (patch)
tree3ac628dd4e81e42fe806134a4439a894f94c8ed2 /bin/chroot-installation.sh
parent82d69a49ab1a2f4b58e6998f47a42efe2a795863 (diff)
downloadjenkins.debian.net-629e72f36cdc57eaf36012a1f9131406384f04b2.tar.xz
chroot-installation: ignore multiarch-support when looking for transitional packages
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/chroot-installation.sh')
-rwxr-xr-xbin/chroot-installation.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh
index 80e6b75a..b0566714 100755
--- a/bin/chroot-installation.sh
+++ b/bin/chroot-installation.sh
@@ -287,7 +287,8 @@ fi
# in sid: find and warn about transitional packages being installed
#
if [ "$DISTRO" = "sid" ] ; then
- ( sudo chroot $CHROOT_TARGET dpkg -l | grep -i "Transitional" 2>/dev/null ) > $TMPFILE
+ # ignore multiarch-support because the transition will never be finished…
+ ( sudo chroot $CHROOT_TARGET dpkg -l | grep -v multiarch-support | grep -i "Transitional" 2>/dev/null ) > $TMPFILE
if [ -s $TMPFILE ] ; then
echo
echo "Warning: Transitional packages found:"