X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FDEBORPHAN%2F98-clean-chroot;h=dce15d484bbf21d9fb5e3bbb73b8fb931dfc2085;hb=refs%2Fheads%2Fmaster;hp=42ed9c24a028e350ccc72ac575bf927061dd5fa5;hpb=2633dd333a7cae68695eafce7b559d69e52633cd;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot b/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot index 42ed9c2..dce15d4 100755 --- a/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot +++ b/etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot @@ -9,21 +9,10 @@ set -u set -e -if ! [ -x $target/usr/bin/deborphan ] ; then - echo "Warning: deborphan not installed" - exit 0 -fi - # remove all packages not necessary anymore: echo "Executing apt-get -y --purge autoremove" $ROOTCMD apt-get -y --purge autoremove -# remove packages until deborphan does not find anymore: -while [ "$($ROOTCMD deborphan)" != "" ] ; do - echo "Executing deborphan" - $ROOTCMD apt-get -y --purge remove $($ROOTCMD deborphan) -done - # make sure we don't have any removed but not-yet-purged packages left, # otherwise GRMLBASE/03-get-sources might try to download unavailable # packages and will fail doing so @@ -34,5 +23,15 @@ if [ -n "$PURGE_PACKAGES" ] ; then $ROOTCMD dpkg --purge $PURGE_PACKAGES fi +# note: deborphan is no longer available as of Debian/trixie, +# see https://github.com/grml/grml-live/issues/144 +if [ -x "$target"/usr/bin/deborphan ] ; then + # remove packages until deborphan does not find anymore: + while [ "$($ROOTCMD deborphan)" != "" ] ; do + echo "Executing deborphan" + $ROOTCMD apt-get -y --purge remove $($ROOTCMD deborphan) + done +fi + ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2