X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fhooks%2Fupdatebase.GRMLBASE;h=c50877fb81d5957d5d85af5aadd11cccc025c00a;hp=063cae487aeae7a847870612430f5706672813c2;hb=1a823a1c53bdc752825296024fcabe2988b40fc1;hpb=51fbcc7c7595303dd703d13d18ccab018ec617bf diff --git a/etc/grml/fai/config/hooks/updatebase.GRMLBASE b/etc/grml/fai/config/hooks/updatebase.GRMLBASE index 063cae4..c50877f 100755 --- a/etc/grml/fai/config/hooks/updatebase.GRMLBASE +++ b/etc/grml/fai/config/hooks/updatebase.GRMLBASE @@ -69,8 +69,16 @@ 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." + + 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 if ! $ROOTCMD test -x /usr/bin/aptitude ; then echo "aptitude binary is not available, installing to make sure further FAI actions continue to work"