diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-04-08 10:57:01 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-04-08 10:57:01 +0200 |
commit | 629e72f36cdc57eaf36012a1f9131406384f04b2 (patch) | |
tree | 3ac628dd4e81e42fe806134a4439a894f94c8ed2 /bin | |
parent | 82d69a49ab1a2f4b58e6998f47a42efe2a795863 (diff) | |
download | jenkins.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')
-rwxr-xr-x | bin/chroot-installation.sh | 3 |
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:" |