X-Git-Url: http://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F33-aptsetup;h=10f587966e50dc7bec914c19553d6691aa3a2ad0;hp=56355f58bb54319d495526b1937fcade5b59fac3;hb=96dd50bc39ed1093afa12ed48b327f9773243b12;hpb=a242e27306035a23c96bf5b07b0840942ed245fb diff --git a/etc/grml/fai/config/scripts/GRMLBASE/33-aptsetup b/etc/grml/fai/config/scripts/GRMLBASE/33-aptsetup index 56355f5..10f5879 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/33-aptsetup +++ b/etc/grml/fai/config/scripts/GRMLBASE/33-aptsetup @@ -6,37 +6,13 @@ # License: This file is licensed under the GPL v2 or any later version. ################################################################################ -set -u set -e -fcopy -v /etc/apt/sources.list -fcopy -v /etc/apt/sources.list.d/grml-stable.list - -case "${SUITE:-}" in - etch) suite_class=DEBIAN_ETCH ;; - lenny) suite_class=DEBIAN_LENNY ;; - squeeze) suite_class=DEBIAN_SQUEEZE ;; - stable) suite_class=DEBIAN_STABLE ;; - testing) suite_class=DEBIAN_TESTING ;; - unstable|sid) suite_class=DEBIAN_SID ;; - wheezy) suite_class=DEBIAN_WHEEZY ;; - *) suite_class=DEBIAN_SID ;; # default to sid otherwise -esac - -if ! [ -r $FAI/files/etc/apt/sources.list.d/debian.list/$suite_class ] ; then - echo "Error: could not find $FAI/files/etc/apt/sources.list.d/debian.list/$suite_class" >&2 - echo "Please provide an according sources.list template." >&2 - exit 1 -fi - -# install according sources.list, depending on deployed Debian suite -fcopy -v -c $suite_class /etc/apt/sources.list.d/debian.list - -# if we have a devel-version or a daily snapshot enable grml-testing repos: -if [ -n "$GRML_NAME" -o -n "$RELEASENAME" ] ; then - if echo "$GRML_NAME" "$RELEASENAME" | grep -e devel -e autobuild >/dev/null ; then - fcopy -v /etc/apt/sources.list.d/grml-testing.list - fi +# use snapshot.debian.org based on build date for release +if ifclass RELEASE ; then + set -u + perl -pi -e 'BEGIN { $d="'$(date +%Y%m%d)'"; } s#^(\s+)(deb.* )(.*://ftp.debian.org.*?)\s+(\w+)\s+(.*)$#$1$2http://snapshot.debian.org/archive/debian/$d/ $4 $5#' \ + "${target}/etc/apt/sources.list.d/debian.list" fi ## END OF FILE #################################################################