#!/bin/bash # Filename: ${GRML_FAI_CONFIG}/config/scripts/DEBORPHAN/98-clean-chroot # Purpose: drop as many packages from grml as possible # Authors: (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. ################################################################################ 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: $ROOTCMD apt-get -y --purge autoremove # remove packages until deborphan does not find anymore: while [ "$($ROOTCMD deborphan)" != "" ] ; do $ROOTCMD apt-get -y --purge remove $($ROOTCMD deborphan) done ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2