X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F98-clean-chroot;h=c7d25ea721f43796f5f75918d952eb770a8eccf8;hb=5d4cdf0789b5814936a60497542d7d925b041bc0;hp=902bd022e92441582cf5d7cf44e8f5a5426a03ce;hpb=dff496980bcc1f22278029ed040a89b4aa8a09e3;p=grml-live.git diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index 902bd02..c7d25ea 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -1,14 +1,21 @@ -#!/bin/sh +#!/bin/bash # Filename: /etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot # Purpose: clean up chroot system # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2 or any later version. -# Latest change: Thu Sep 18 01:32:11 CEST 2008 [mika] ################################################################################ set -e +# check for policy-rc.d workaround of +# /etc/grml/fai/config/hooks/updatebase.GRMLBASE +if [ -r $target/usr/sbin/policy-rc.d ] ; then + if grep -q 'FAI_ACTION=updatebase' $target/usr/sbin/policy-rc.d ; then + rm -f $target/usr/sbin/policy-rc.d + fi +fi + # remove some big directories when using class LATEX_CLEANUP: if ifclass LATEX_CLEANUP ; then cp /etc/grml/fai/grml/grml_cleanup_chroot.latex_cleanup $target/root/ @@ -27,7 +34,7 @@ fi if ifclass GRML_SMALL ; then $ROOTCMD apt-get -y --purge remove aptitude for pkg in groff-base info locales man-db manpages nano; do - $ROOTCMD apt-get --purge $pkg || true + $ROOTCMD apt-get --purge remove --yes $pkg || true done fi