X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fhooks%2Fupdatebase.GRMLBASE;h=d19c4e28ae74ccece0d6864abc9ec650fdaf5997;hp=9e0913a8476a9a682640faf9d57c83df82d2d565;hb=09c49937040b8c4d3dfa18683ef277e481a21b1c;hpb=ef51d0c8f7f9fcfa8faf0fa800b4a865517666a2 diff --git a/etc/grml/fai/config/hooks/updatebase.GRMLBASE b/etc/grml/fai/config/hooks/updatebase.GRMLBASE index 9e0913a..d19c4e2 100755 --- a/etc/grml/fai/config/hooks/updatebase.GRMLBASE +++ b/etc/grml/fai/config/hooks/updatebase.GRMLBASE @@ -41,6 +41,11 @@ if [ "$FAI_ACTION" = "softupdate" ] ; then mount --bind /dev $FAI_ROOT/dev || true fi + if [ -d $FAI_ROOT/run ] ; then + mount -t tmpfs tmpfs $FAI_ROOT/run + mkdir $FAI_ROOT/run/lock + fi + mount -t devpts devpts $FAI_ROOT/dev/pts || true # skip the task if we want to build a new ISO only, @@ -62,10 +67,15 @@ if ! [ -e ${target}/etc/udev/kernel-upgrade ] ; then fi # install all apt related files -fcopy -B -v -r /etc/apt +fcopy -i -B -v -r /etc/apt # install Grml gpg key: $ROOTCMD apt-key add /etc/apt/grml.key +if ! $ROOTCMD test -x /usr/bin/aptitude ; then + echo "aptitude binary is not available, installing to make sure further FAI actions continue to work" + $ROOTCMD apt-get -y install aptitude +fi + ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2