X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fhooks%2Fupdatebase.GRMLBASE;h=65881267e2373c3f11e6b577341148d4c38507bd;hp=063cae487aeae7a847870612430f5706672813c2;hb=HEAD;hpb=51fbcc7c7595303dd703d13d18ccab018ec617bf diff --git a/etc/grml/fai/config/hooks/updatebase.GRMLBASE b/etc/grml/fai/config/hooks/updatebase.GRMLBASE index 063cae4..6588126 100755 --- a/etc/grml/fai/config/hooks/updatebase.GRMLBASE +++ b/etc/grml/fai/config/hooks/updatebase.GRMLBASE @@ -69,13 +69,15 @@ fi # install all apt related files fcopy -i -B -v -r /etc/apt -# install Grml gpg key: -$ROOTCMD apt-key add /etc/apt/grml.key +# install packages from a repository of a specific date +if [ -n "${WAYBACK_DATE:-}" ] ; then + echo "Wayback date '$WAYBACK_DATE' identified, enabling for snapshot.debian.org usage." -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 update - $ROOTCMD apt-get -y install aptitude + perl -pi -e "s#^(\s+)(deb.* )(.*://ftp.debian.org.*?)\s+([a-z-]+)\s+(.*)\$#\$1\$2 [check-valid-until=no] http://snapshot.debian.org/archive/debian/$WAYBACK_DATE/ \$4 \$5#" \ + "${target}/etc/apt/sources.list.d/debian.list" + + perl -pi -e "s#^(\s+)(deb.* )(.*://security.debian.org.*?)\s+([a-z-/]+)\s+(.*)\$#\$1\$2 [check-valid-until=no] http://snapshot.debian.org/archive/debian-security/$WAYBACK_DATE/ \$4 \$5#" \ + "${target}/etc/apt/sources.list.d/debian.list" fi ## END OF FILE #################################################################