fe8ad47778edff9aff5bfa1dcc533d7329c0629e
[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: Sat Oct 06 00:55:29 CEST 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 # work around http://trac.lighttpd.net/trac/ticket/657
14 # should be removed later on:
15 echo "Acquire::http::Pipeline-Depth "0";" >> $target/etc/apt/apt.conf
16
17 # install grml keys:
18 gpg --keyserver subkeys.pgp.net --recv-keys F61E2E7CECDEA787
19 gpg --export F61E2E7CECDEA787 > $target/etc/apt/grml.key
20 $ROOTCMD apt-key add /etc/apt/grml.key
21
22 # make sure we have file-rc available before
23 # package_config/GRML is being executed:
24 $ROOTCMD apt-get update
25 $ROOTCMD aptitude -f -y install file-rc
26
27 # make sure /dev/MAKEDEV is available:
28 if [ -x "$target"/sbin/MAKEDEV ] && ! [ -r "$target"/dev/MAKEDEV ] ; then
29    ln -s /sbin/MAKEDEV "$target"/dev/MAKEDEV
30 fi
31
32 # we don't need the invoke-rc.d.d diversion (we have grml-policyrcd :)):
33 if [ -L "$target"/usr/sbin/invoke-rc.d ] ; then
34    rm -f "$target"/usr/sbin/invoke-rc.d
35    $ROOTCMD dpkg-divert --package fai --rename --remove /usr/sbin/invoke-rc.d
36 fi
37
38 ## END OF FILE #################################################################
39 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3