Make sure packages are being removed before docs
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 98-clean-chroot
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot
3 # Purpose:       clean up chroot system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Sat Dec 22 09:58:17 CET 2007 [mika]
8 ################################################################################
9
10 set -e
11
12 # remove some big directories when using class LATEX_CLEANUP:
13 if ifclass LATEX_CLEANUP ; then
14    cp /etc/grml/fai/grml/grml_cleanup_chroot.latex_cleanup $target/root/
15    $ROOTCMD  /root/grml_cleanup_chroot.latex_cleanup
16    rm $target/root/grml_cleanup_chroot.latex_cleanup
17 fi
18
19 # skip tasks which require only when using class NO_ONLINE:
20 if ! ifclass NO_ONLINE ; then
21    cp /etc/grml/fai/grml/grml_cleanup_chroot.online $target/root/
22    $ROOTCMD  /root/grml_cleanup_chroot.online
23    rm $target/root/grml_cleanup_chroot.online
24 fi
25
26 # drop unnecessary software:
27 if ifclass GRML_SMALL || ifclass DEBORPHAN ; then
28    if [ -f /etc/grml/fai/grml/grml_cleanup_chroot.deborphan ] ; then
29       cp /etc/grml/fai/grml/grml_cleanup_chroot.deborphan $target/root/
30       $ROOTCMD  /root/grml_cleanup_chroot.deborphan
31       rm $target/root/grml_cleanup_chroot.deborphan
32    fi
33 fi
34
35 # make sure to drop from grml-small what's unnecessary:
36 if ifclass GRML_SMALL ; then
37    $ROOTCMD apt-get -y --purge remove groff-base info \
38                     locales man-db manpages nano
39 fi
40
41 # remove /usr/share/doc, /usr/share/info,... only in class REMOVE_DOCS:
42 # (important: remove them *after* deinstalling packages, otherwise
43 # removing packages might fail due to lack of /usr/share/man/...)
44 if ifclass REMOVE_DOCS ; then
45    cp /etc/grml/fai/grml/grml_cleanup_chroot.remove_docs $target/root/
46    $ROOTCMD  /root/grml_cleanup_chroot.remove_docs
47    rm $target/root/grml_cleanup_chroot.remove_docs
48 fi
49 # misc cleanup:
50 if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then
51    cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/
52    $ROOTCMD  /root/grml_cleanup_chroot
53    rm $target/root/grml_cleanup_chroot
54 fi
55
56 # make sure GRML_SMALL uses the appropriate configuration:
57 if ifclass GRML_SMALL ; then
58    cp $target/etc/inittab.small $target/etc/inittab
59    cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf
60 fi
61
62 if ifclass RELEASE ; then
63    # Remove all FAI logs from chroot via grml-live later then:
64    touch $target/etc/grml_fai_release
65    # Remove all files inside /root/ of chroot:
66    rm -rf $target/root && mkdir -m 0755 $target/root
67 fi
68
69 ## END OF FILE #################################################################
70 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3