GRMLBASE/33-aptsetup: adjust snapshot.debian.org cmdline and enable it for RELEASE...
authorMichael Prokop <mika@grml.org>
Wed, 30 May 2012 12:59:04 +0000 (14:59 +0200)
committerMichael Prokop <mika@grml.org>
Wed, 30 May 2012 12:59:07 +0000 (14:59 +0200)
Closes: issue1083

etc/grml/fai/config/scripts/GRMLBASE/33-aptsetup

index c38a28e..39af509 100755 (executable)
@@ -8,11 +8,12 @@
 
 set -e
 
-if ifclass SNAPSHOT ; then
+# 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.* )(.*://cdn.*?)(
-  .*)$#$1$2http://snapshot.debian.org/archive/debian/$d/$4#' \
+  perl -pi -e 'BEGIN { $d="'$(date +%Y%m%d)'"; } s#^(\s+)(deb.* )(.*://cdn.*?)\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 #################################################################