X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F98-clean-chroot;h=ae2d0c1fe46919732b39af71add277044a182914;hp=c259003c031fd4e2fbefca8433c5dc30b5021e11;hb=3e5fb2360b0df8563ade7c0ec43acf655698fc13;hpb=da3354badf10160feb9b4957b203a4c47d43c768 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index c259003..ae2d0c1 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: Sun Dec 16 20:00:39 CET 2007 [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/ @@ -23,11 +30,12 @@ if ! ifclass NO_ONLINE ; then rm $target/root/grml_cleanup_chroot.online fi -# remove /usr/share/doc, /usr/share/info,... only in class REMOVE_DOCS: -if ifclass REMOVE_DOCS ; then - cp /etc/grml/fai/grml/grml_cleanup_chroot.remove_docs $target/root/ - $ROOTCMD /root/grml_cleanup_chroot.remove_docs - rm $target/root/grml_cleanup_chroot.remove_docs +# make sure to drop from grml-small what's unnecessary: +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 remove --yes $pkg || true + done fi # drop unnecessary software: @@ -39,12 +47,14 @@ if ifclass GRML_SMALL || ifclass DEBORPHAN ; then fi fi -# make sure to drop from grml-small what's unnecessary: -if ifclass GRML_SMALL ; then - $ROOTCMD apt-get -y --purge remove groff-base info \ - locales man-db manpages nano +# remove /usr/share/doc, /usr/share/info,... only in class REMOVE_DOCS: +# (important: remove them *after* deinstalling packages, otherwise +# removing packages might fail due to lack of /usr/share/man/...) +if ifclass REMOVE_DOCS ; then + cp /etc/grml/fai/grml/grml_cleanup_chroot.remove_docs $target/root/ + $ROOTCMD /root/grml_cleanup_chroot.remove_docs + rm $target/root/grml_cleanup_chroot.remove_docs fi - # misc cleanup: if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/ @@ -55,7 +65,6 @@ fi # make sure GRML_SMALL uses the appropriate configuration: if ifclass GRML_SMALL ; then cp $target/etc/inittab.small $target/etc/inittab - cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf fi if ifclass RELEASE ; then