summaryrefslogtreecommitdiffstats
path: root/bin/chroot-installation.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/chroot-installation.sh')
-rwxr-xr-xbin/chroot-installation.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh
index aa9462c8..3557b198 100755
--- a/bin/chroot-installation.sh
+++ b/bin/chroot-installation.sh
@@ -288,12 +288,19 @@ fi
#
if [ "$DISTRO" = "sid" ] ; then
# 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 || true) > $TMPFILE
+ # ignore ttf-freefont, stretch is frozen…
+ ( sudo chroot $CHROOT_TARGET dpkg -l \
+ | grep -v multiarch-support \
+ | grep -v ttf-freefont \
+ | grep -i "Transitional" 2>/dev/null || true) > $TMPFILE
if [ -s $TMPFILE ] ; then
echo
echo "Warning: Transitional packages found:"
cat $TMPFILE
fi
+ if ! cat /etc/debian_version | grep -q ^8 ; then
+ echo "Warning: seems Stretch has been released, please revisit the list of transitional packages to ignore…"
+ fi
fi
echo "Debug: Removing trap."