Integrated grml_cleanup_chroot.deborphan
[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: Sun Dec 16 17:37:09 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 # remove /usr/share/doc, /usr/share/info,... only in class REMOVE_DOCS:
27 if ifclass REMOVE_DOCS ; then
28    cp /etc/grml/fai/grml/grml_cleanup_chroot.remove_docs $target/root/
29    $ROOTCMD  /root/grml_cleanup_chroot.remove_docs
30    rm $target/root/grml_cleanup_chroot.remove_docs
31 fi
32
33 # drop unnecessary software:
34 if ifclass GRML_SMALL || ifclass DEBORPHAN ; then
35    if [ -f /etc/grml/fai/grml/grml_cleanup_chroot.deborphan ] ; then
36       cp /etc/grml/fai/grml/grml_cleanup_chroot.deborphan $target/root/
37       $ROOTCMD  /root/grml_cleanup_chroot.deborphan
38       rm $target/root/grml_cleanup_chroot.deborphan
39    fi
40 fi
41
42 # misc cleanup:
43 if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then
44    cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/
45    $ROOTCMD  /root/grml_cleanup_chroot
46    rm $target/root/grml_cleanup_chroot
47 fi
48
49 # make sure GRML_SMALL uses the appropriate configuration:
50 if ifclass GRML_SMALL ; then
51    cp $target/etc/inittab.small $target/etc/inittab
52    cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf
53 fi
54
55 if ifclass RELEASE ; then
56    # Remove all FAI logs from chroot via grml-live later then:
57    touch $target/etc/grml_fai_release
58    # Remove all files inside /root/ of chroot:
59    rm -rf $target/root && mkdir -m 0755 $target/root
60 fi
61
62 ## END OF FILE #################################################################
63 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3