Set $HOSTNAME to according hostname
[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: Wed Sep 19 13:51:05 CEST 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.no_online $target/root/
22    $ROOTCMD /root/grml_cleanup_chroot.no_online
23    rm $target/root/grml_cleanup_chroot.no_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 # misc cleanup:
34 cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/
35 $ROOTCMD /root/grml_cleanup_chroot
36 rm $target/root/grml_cleanup_chroot
37
38 # make sure GRML_SMALL uses the appropriate configuration:
39 if ifclass GRML_SMALL ; then
40    cp $target/etc/inittab.small $target/etc/inittab
41    cp $target/etc/runlevel.conf.livecd.small $target/etc/runlevel.conf
42 fi
43
44 ## END OF FILE #################################################################
45 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3