Drop insserv removal from instsoft.GRMLBASE hook script
[grml-live.git] / etc / grml / fai / config / hooks / instsoft.GRMLBASE
1 #!/bin/bash
2 # Filename:      ${GRML_FAI_CONFIG}/hooks/instsoft.GRMLBASE
3 # Purpose:       Grml specific software installation in the chroot, executed after updatebase
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 ################################################################################
8
9 set -u
10 set -e
11
12 # if hooks/updatebase.GRMLBASE fails for whatever reason
13 # and can't skip instsoft.GRMLBASE we have to make sure
14 # we exit here as well
15 if [ -n "$BUILD_ONLY" ] ; then
16    "Exiting hooks/instsoft.GRMLBASE as BUILD_ONLY environment is set."
17    exit 0
18 fi
19
20 if [ "$FAI_ACTION" = "softupdate" ] ; then
21    echo "Action $FAI_ACTION of FAI (hooks/instsoft.GRMLBASE) via grml-live running"
22
23    # /etc/resolv.conf is usually a symlink, pointing out of the chroot.
24    # Make it a file with known contents.
25    rm -f "${target}"/etc/resolv.conf
26    cat /etc/resolv.conf >> "$target"/etc/resolv.conf
27
28    if [ -r $target/etc/policy-rc.d.conf ] ; then
29       sed -i "s/EXITSTATUS=.*/EXITSTATUS='101'/" $target/etc/policy-rc.d.conf
30    fi
31
32    # we definitely don't want to fail running fai sofupdate just
33    # because of some well known bugs:
34    [ -d $target/etc/apt/apt.conf.d ] || mkdir $target/etc/apt/apt.conf.d
35    cat > $target/etc/apt/apt.conf.d/10apt-listbugs << EOF
36 // Check all packages whether they has critical bugs before they are installed.
37 // If you don't like it, comment it out.
38 //DPkg::Pre-Install-Pkgs {"/usr/sbin/apt-listbugs apt || exit 10"};
39 //DPkg::Tools::Options::/usr/sbin/apt-listbugs "";
40 //DPkg::Tools::Options::/usr/sbin/apt-listbugs::Version "2";
41 EOF
42
43    # work around /etc/kernel/postinst.d/zz-update-grub failing
44    # inside openvz environment, see #597084
45    if ! $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/update-grub' ; then
46      echo "Diverting update-grub executable"
47      $ROOTCMD dpkg-divert --rename --add /usr/sbin/update-grub
48      $ROOTCMD ln -s /bin/true /usr/sbin/update-grub
49    fi
50
51    # work around a bug which causes openvz to freeze when grub-probe is invoked
52    if ! $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/grub-probe' ; then
53      echo "Diverting grub-probe executable"
54      $ROOTCMD dpkg-divert --rename --add /usr/sbin/grub-probe
55      $ROOTCMD ln -s /bin/true /usr/sbin/grub-probe
56    fi
57
58   # newer aptitude versions won't remove essential packages using
59   # 'aptitude -f -y install file-rc' anymore, therefore force it:
60   $ROOTCMD aptitude -o Aptitude::ProblemResolver::Keep-All-Tier=60000 -f -y install file-rc
61
62    if ! $ROOTCMD test -x /usr/bin/aptitude ; then
63       $ROOTCMD apt-get -y install aptitude
64    fi
65
66    # Update package lists (so they exist at all), so we actually can
67    # install software.
68    $ROOTCMD apt-get update
69
70    # make sure we can upgrade automatically,
71    # even with unsigned repos, but only if user wants it
72    if [ "${FAI_ALLOW_UNSIGNED:-}" = "1" ] ; then
73      APTGET_OPTS="${APTGET_OPTS:-} --allow-unauthenticated"
74      APTITUDE_OPTS="${APTITUDE_OPTS:-} --allow-untrusted"
75    fi
76
77    if $ROOTCMD test -x /usr/bin/aptitude ; then
78       if $ROOTCMD aptitude --help | grep -q safe-upgrade ; then
79          APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none $ROOTCMD aptitude -y $APTITUDE_OPTS safe-upgrade
80       else
81          APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none $ROOTCMD aptitude -y $APTITUDE_OPTS upgrade
82       fi
83    else
84       APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none $ROOTCMD apt-get -y $APTGET_OPTS --force-yes upgrade
85    fi
86
87    exit # make sure we don't continue behind the following "fi"
88 fi
89
90 # no softupdate but fresh installation
91 echo "Action $FAI_ACTION of FAI (hooks/instsoft.GRMLBASE) via grml-live running"
92
93 # work around /etc/kernel/postinst.d/zz-update-grub failing
94 # inside openvz environment, see #597084
95 if ! $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/update-grub' ; then
96   echo "Diverting update-grub executable"
97   $ROOTCMD dpkg-divert --rename --add /usr/sbin/update-grub
98   $ROOTCMD ln -s /bin/true /usr/sbin/update-grub
99 fi
100
101 # work around a bug which causes openvz to freeze when grub-probe is invoked
102 if ! $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/grub-probe' ; then
103   echo "Diverting grub-probe executable"
104   $ROOTCMD dpkg-divert --rename --add /usr/sbin/grub-probe
105   $ROOTCMD ln -s /bin/true /usr/sbin/grub-probe
106 fi
107
108 # make sure we have file-rc available before package_config/GRML* is being executed {{{
109 # the apt-get update might return an error if there's for example
110 # a hashsum mismatch on Debian mirror sources, we might want to continue
111 # but should warn the user
112 if ! $ROOTCMD apt-get update ; then
113    echo "Warning: there was an error executing apt-get update, continuing anyway."
114    echo "Warning: there was an error executing apt-get update, continuing anyway." >&2
115 fi
116
117 # newer aptitude versions won't remove essential packages using
118 # 'aptitude -f -y install file-rc' anymore, therefore force it via:
119 $ROOTCMD aptitude -o Aptitude::ProblemResolver::Keep-All-Tier=60000 -f -y install file-rc
120 # }}}
121
122 # we definitely don't want to fail running fai dirinstall just
123 # because of some well known bugs:
124 [ -d $target/etc/apt/apt.conf.d ] || mkdir $target/etc/apt/apt.conf.d
125 cat > $target/etc/apt/apt.conf.d/10apt-listbugs << EOF
126 // Check all packages whether they has critical bugs before they are installed.
127 // If you don't like it, comment it out.
128 //DPkg::Pre-Install-Pkgs {"/usr/sbin/apt-listbugs apt || exit 10"};
129 //DPkg::Tools::Options::/usr/sbin/apt-listbugs "";
130 //DPkg::Tools::Options::/usr/sbin/apt-listbugs::Version "2";
131 EOF
132
133 # make sure /dev/MAKEDEV is available:
134 if [ -x "$target"/sbin/MAKEDEV ] && ! [ -r "$target"/dev/MAKEDEV ] ; then
135    ln -s /sbin/MAKEDEV "$target"/dev/MAKEDEV
136 fi
137
138 # we don't need the invoke-rc.d.d diversion (we have grml-policyrcd :)):
139 if [ -L "$target"/usr/sbin/invoke-rc.d ] ; then
140    rm -f "$target"/usr/sbin/invoke-rc.d
141    $ROOTCMD dpkg-divert --package fai --rename --remove /usr/sbin/invoke-rc.d
142 fi
143
144 ## END OF FILE #################################################################
145 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2