Support setting /etc/debian_chroot
[grml-live.git] / etc / grml / fai / config / hooks / instsoft.GRMLBASE
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/hooks/instsoft.GRML
3 # Purpose:       grml specific Debian installation in the chroot
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: Mon Okt 29 23:35:34 CET 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 # visualize chroot inside zsh:
14 echo grml_chroot > $target/etc/debian_chroot
15
16 if [ "$FAI_ACTION" = "softupdate" ] ; then
17    echo "Softupdate"
18    # make sure we prefer grml repository:
19    if [ -r /etc/grml/fai/apt/preferences ] ; then
20       cp /etc/grml/fai/apt/preferences $target/etc/apt/preferences
21    fi
22
23    if [ -r /etc/grml/fai/apt/sources.list ] ; then
24       if [ -L $target/etc/apt/sources.list ] ; then
25          rm $target/etc/apt/sources.list
26       fi
27       cp /etc/grml/fai/apt/sources.list $target/etc/apt/sources.list
28    fi
29
30    $ROOTCMD apt-get update
31
32 else # no softupdate but fresh installation
33
34 # work around http://trac.lighttpd.net/trac/ticket/657
35 # should be removed later on:
36 echo "Acquire::http::Pipeline-Depth "0"; // added by grml-live" >> $target/etc/apt/apt.conf
37
38 # install grml keys:
39 gpg --keyserver subkeys.pgp.net      --recv-keys F61E2E7CECDEA787 || \
40 gpg --keyserver blackhole.pca.dfn.de --recv-keys F61E2E7CECDEA787
41 gpg --export F61E2E7CECDEA787 > $target/etc/apt/grml.key
42 $ROOTCMD apt-key add /etc/apt/grml.key
43
44 # make sure we prefer grml repository:
45 if [ -r /etc/grml/fai/files/etc/apt/preferences ] ; then
46    cp /etc/grml/fai/apt/preferences $target/etc/apt/preferences
47 fi
48
49 # make sure we have file-rc available before
50 # package_config/GRML is being executed:
51 $ROOTCMD apt-get update
52 $ROOTCMD aptitude -f -y install file-rc
53
54 # Workaround #443481 of snort for Debian/etch:
55 mkdir -p $target/etc/snort
56 echo 'LOGDIR=/var/log/snort' >> $target/etc/snort/snort.common.parameters
57
58 # we definitely don't want to fail running fai dirinstall just
59 # because of some well known bugs:
60 [ -d $target/etc/apt/apt.conf.d ] || mkdir $target/etc/apt/apt.conf.d
61 cat > $target/etc/apt/apt.conf.d/10apt-listbugs << EOF
62 // Check all packages whether they has critical bugs before they are installed.
63 // If you don't like it, comment it out.
64 //DPkg::Pre-Install-Pkgs {"/usr/sbin/apt-listbugs apt || exit 10"};
65 //DPkg::Tools::Options::/usr/sbin/apt-listbugs "";
66 //DPkg::Tools::Options::/usr/sbin/apt-listbugs::Version "2";
67 EOF
68
69 # make sure /dev/MAKEDEV is available:
70 if [ -x "$target"/sbin/MAKEDEV ] && ! [ -r "$target"/dev/MAKEDEV ] ; then
71    ln -s /sbin/MAKEDEV "$target"/dev/MAKEDEV
72 fi
73
74 # we don't need the invoke-rc.d.d diversion (we have grml-policyrcd :)):
75 if [ -L "$target"/usr/sbin/invoke-rc.d ] ; then
76    rm -f "$target"/usr/sbin/invoke-rc.d
77    $ROOTCMD dpkg-divert --package fai --rename --remove /usr/sbin/invoke-rc.d
78 fi
79
80 fi # end of FAI_ACTION = softupdate
81
82 ## END OF FILE #################################################################
83 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3