Always drop groff-base, man-db, info, man-db, manpages and nano from grml-small
[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 20:00:39 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 # make sure to drop from grml-small what's unnecessary:
43 if ifclass GRML_SMALL ; then
44    $ROOTCMD apt-get -y --purge remove groff-base man-db info  man-db  manpages nano
45 fi
46
47 # misc cleanup:
48 if [ -f /etc/grml/fai/grml/grml_cleanup_chroot ] ; then
49    cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/
50    $ROOTCMD  /root/grml_cleanup_chroot
51    rm $target/root/grml_cleanup_chroot
52 fi
53
54 # make sure GRML_SMALL uses the appropriate configuration:
55 if ifclass GRML_SMALL ; then
56    cp $target/etc/inittab.small $target/etc/inittab
57    cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf
58 fi
59
60 if ifclass RELEASE ; then
61    # Remove all FAI logs from chroot via grml-live later then:
62    touch $target/etc/grml_fai_release
63    # Remove all files inside /root/ of chroot:
64    rm -rf $target/root && mkdir -m 0755 $target/root
65 fi
66
67 ## END OF FILE #################################################################
68 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3