Merge remote-tracking branch 'origin/github/pr/145'
[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    # Update package lists (so they exist at all), so we can install
59    # software; if /var/lib/dpkg/available is empty, it was was probably
60    # cleaned by GRMLBASE/98-clean-chroot, so we need to rebuild it
61    # anyway
62    $ROOTCMD /usr/lib/dpkg/methods/apt/update /var/lib/dpkg/ apt apt
63
64    if ! $ROOTCMD test -x /usr/bin/aptitude ; then
65      # the apt-get update might return an error if there's for example
66      # a hashsum mismatch on Debian mirror sources, we might want to continue
67      # but should warn the user
68      if ! $ROOTCMD apt-get update ; then
69        echo "Warning: there was an error executing apt-get update, continuing anyway."
70        echo "Warning: there was an error executing apt-get update, continuing anyway." >&2
71      fi
72
73      $ROOTCMD apt-get -y install aptitude
74    fi
75
76    # make sure we can upgrade automatically,
77    # even with unsigned repos, but only if user wants it
78    if [ "${FAI_ALLOW_UNSIGNED:-}" = "1" ] ; then
79      APTGET_OPTS="${APTGET_OPTS:-} --allow-unauthenticated"
80      APTITUDE_OPTS="${APTITUDE_OPTS:-} --allow-untrusted"
81    fi
82
83    # make sure we don't fail when configuration files changed
84    APTGET_OPTS="${APTGET_OPTS:-} -o DPkg::Options::=--force-confdef -o DPkg::Options::=--force-confmiss -o DPkg::Options::=--force-confnew"
85    APTITUDE_OPTS="${APTITUDE_OPTS:-} -o DPkg::Options::=--force-confdef -o DPkg::Options::=--force-confmiss -o DPkg::Options::=--force-confnew"
86
87    if $ROOTCMD test -x /usr/bin/aptitude ; then
88       if $ROOTCMD aptitude --help | grep -q safe-upgrade ; then
89          APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none $ROOTCMD aptitude -y $APTITUDE_OPTS safe-upgrade
90       else
91          APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none $ROOTCMD aptitude -y $APTITUDE_OPTS upgrade
92       fi
93    else
94       APT_LISTCHANGES_FRONTEND=none APT_LISTBUGS_FRONTEND=none $ROOTCMD apt-get -y $APTGET_OPTS --force-yes upgrade
95    fi
96
97    exit # make sure we don't continue behind the following "fi"
98 fi
99
100 # no softupdate but fresh installation
101 echo "Action $FAI_ACTION of FAI (hooks/instsoft.GRMLBASE) via grml-live running"
102
103 # work around /etc/kernel/postinst.d/zz-update-grub failing
104 # inside openvz environment, see #597084
105 if ! $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/update-grub' ; then
106   echo "Diverting update-grub executable"
107   $ROOTCMD dpkg-divert --rename --add /usr/sbin/update-grub
108   $ROOTCMD ln -s /bin/true /usr/sbin/update-grub
109 fi
110
111 # work around a bug which causes openvz to freeze when grub-probe is invoked
112 if ! $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/grub-probe' ; then
113   echo "Diverting grub-probe executable"
114   $ROOTCMD dpkg-divert --rename --add /usr/sbin/grub-probe
115   $ROOTCMD ln -s /bin/true /usr/sbin/grub-probe
116 fi
117
118 # }}}
119
120 # we definitely don't want to fail running fai dirinstall just
121 # because of some well known bugs:
122 [ -d $target/etc/apt/apt.conf.d ] || mkdir $target/etc/apt/apt.conf.d
123 cat > $target/etc/apt/apt.conf.d/10apt-listbugs << EOF
124 // Check all packages whether they has critical bugs before they are installed.
125 // If you don't like it, comment it out.
126 //DPkg::Pre-Install-Pkgs {"/usr/sbin/apt-listbugs apt || exit 10"};
127 //DPkg::Tools::Options::/usr/sbin/apt-listbugs "";
128 //DPkg::Tools::Options::/usr/sbin/apt-listbugs::Version "2";
129 EOF
130
131 # make sure /dev/MAKEDEV is available:
132 if [ -x "$target"/sbin/MAKEDEV ] && ! [ -r "$target"/dev/MAKEDEV ] ; then
133    ln -s /sbin/MAKEDEV "$target"/dev/MAKEDEV
134 fi
135
136 # we don't need the invoke-rc.d.d diversion (we have grml-policyrcd :)):
137 if [ -L "$target"/usr/sbin/invoke-rc.d ] ; then
138    rm -f "$target"/usr/sbin/invoke-rc.d
139    $ROOTCMD dpkg-divert --package fai --rename --remove /usr/sbin/invoke-rc.d
140 fi
141
142 ## END OF FILE #################################################################
143 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2