Mention the b0rken suite on-the-fly heuristic
[grml-live.git] / etc / grml / fai / config / scripts / GRMLBASE / 98-clean-chroot
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/scripts/GRML/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 Sep 16 23:03:50 CEST 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 # TODO: provide customization of what should be cleaned up
14
15 cp /etc/grml/fai/grml/grml_cleanup_chroot $target/root/
16 $ROOTCMD /root/grml_cleanup_chroot
17 rm $target/root/grml_cleanup_chroot
18
19 ## END OF FILE #################################################################
20 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3