X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fhooks%2Finstsoft.GRMLBASE;h=b47152ba735b990e31c6817343f5d4603d5b845c;hp=55886f943aa3fc58ca0454b0a5b821840ac9cbf7;hb=4b2e8632eba4fa2343986f897cfcd59ed1413d66;hpb=574c42b5cbb9d1264b84bade255aed42547db8ec diff --git a/etc/grml/fai/config/hooks/instsoft.GRMLBASE b/etc/grml/fai/config/hooks/instsoft.GRMLBASE index 55886f9..b47152b 100755 --- a/etc/grml/fai/config/hooks/instsoft.GRMLBASE +++ b/etc/grml/fai/config/hooks/instsoft.GRMLBASE @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Filename: /etc/grml/fai/config/hooks/instsoft.GRML # Purpose: grml specific Debian installation in the chroot # Authors: grml-team (grml.org), (c) Michael Prokop @@ -52,20 +52,40 @@ EOF fi # FAI softupdate executes upgrade only with the sources.list being - # present in the chroot :-/ - so let's do it on our own: + # present in the chroot - so let's do it on our own: if [ -r /etc/grml/fai/apt/sources.list ] ; then if [ -L $target/etc/apt/sources.list ] ; then rm $target/etc/apt/sources.list fi + + # install grml-live's (on the fly adjusted) sources.list config cp /etc/grml/fai/apt/sources.list $target/etc/apt/sources.list.d/grml-live.list + + # when re-running grml-live with the -u option we do not want to use the + # sources.list config of the live system but grml-live's config instead, + # therefore temporarly move known files and restore them again later on + # through /etc/grml/fai/config/scripts/GRMLBASE/33-aptsetup: if [ -r $target/etc/apt/sources.list.d/grml.list ] ; then mv $target/etc/apt/sources.list.d/grml.list $target/etc/apt/sources.list.d/grml.unused fi + if [ -r $target/etc/apt/sources.list.d/debian.list ] ; then + mv $target/etc/apt/sources.list.d/debian.list $target/etc/apt/sources.list.d/debian.unused + fi fi # run it on our own, as updatebase is used at the wrong stage for our needs, # see /etc/grml/fai/config/hooks/updatebase.GRMLBASE - $ROOTCMD apt-get update + # the apt-get update might return an error if there's for example + # a hashsum mismatch on Debian mirror sources, we might want to continue + # but should warn the user + if ! $ROOTCMD apt-get update ; then + echo "Warning: there was an error executing apt-get update, continuing anyway." + fi + + # newer aptitude versions won't remove essential packages using + # 'aptitude -f -y install file-rc' anymore, therefore force it: + $ROOTCMD aptitude -o Aptitude::ProblemResolver::Keep-All-Tier=60000 -f -y install file-rc + if ! [ -x $target/usr/bin/aptitude ] ; then $ROOTCMD apt-get -y install aptitude fi @@ -116,12 +136,18 @@ if ! grep -q 'Aptitude::Recommends-Important.*false' $target/etc/apt/apt.conf ; echo "Aptitude::Recommends-Important false; // added by grml-live" >> $target/etc/apt/apt.conf fi -# make sure we have file-rc available before -# package_config/GRML is being executed: -$ROOTCMD apt-get update -# newer aptitude versions won't remove essential packages using -# 'aptitude -f -y install file-rc' anymore, therefore force it: -$ROOTCMD aptitude -o Aptitude::ProblemResolver::Keep-All-Tier=60000 -f -y install file-rc +# make sure we have file-rc available before package_config/GRML is +# being executed {{{ + # the apt-get update might return an error if there's for example + # a hashsum mismatch on Debian mirror sources, we might want to continue + # but should warn the user + if ! $ROOTCMD apt-get update ; then + echo "Warning: there was an error executing apt-get update, continuing anyway." + fi + # newer aptitude versions won't remove essential packages using + # 'aptitude -f -y install file-rc' anymore, therefore force it: + $ROOTCMD aptitude -o Aptitude::ProblemResolver::Keep-All-Tier=60000 -f -y install file-rc +# }}} # get rid of insserv: if $ROOTCMD dpkg --list insserv 2>/dev/null | grep -q '^ii' ; then