From b5a891df1427c4247a9ce6cc86d5f4ebd4f5f0e8 Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel@debian.org>
Date: Mon, 10 Aug 2009 00:50:56 +0200
Subject: Including archive trace into .disk meta information.

---
 helpers/lh_binary_disk | 10 ++++++++++
 helpers/lh_source_disk | 10 ++++++++++
 2 files changed, 20 insertions(+)

diff --git a/helpers/lh_binary_disk b/helpers/lh_binary_disk
index a7674e7..2d209fb 100755
--- a/helpers/lh_binary_disk
+++ b/helpers/lh_binary_disk
@@ -56,22 +56,32 @@ TITLE="Debian GNU/Linux"
 case "${LH_MODE}" in
 	debian)
 		STRING="Official Snapshot ${ARCHITECTURE}"
+		TRACE="project/trace/ftp-master.debian.org"
 		;;
 
 	debian-release)
 		STRING="Official ${ARCHITECTURE}"
+		TRACE="project/trace/ftp-master.debian.org"
 		;;
 
 	ubuntu)
 		TITLE="Ubuntu GNU/Linux"
 		STRING="Build ${ARCHITECTURE}"
+		TRACE=""
 		;;
 
 	*)
 		STRING="Snapshot ${ARCHITECTURE}"
+		TRACE=""
 		;;
 esac
 
+if [ -n "${TRACE}" ]
+then
+	echo "$(wget -q ${LH_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
+	> binary/.disk/archive_trace
+fi
+
 case "${LH_DEBIAN_INSTALLER}" in
 	cdrom)
 		echo "main" > binary/.disk/base_components
diff --git a/helpers/lh_source_disk b/helpers/lh_source_disk
index 105fd63..a69be67 100755
--- a/helpers/lh_source_disk
+++ b/helpers/lh_source_disk
@@ -52,22 +52,32 @@ eval VERSION="$`echo RELEASE_${LH_DISTRIBUTION}`"
 case "${LH_MODE}" in
 	debian)
 		STRING="Official Snapshot ${ARCHITECTURE}"
+		TRACE="project/trace/ftp-master.debian.org"
 		;;
 
 	debian-release)
 		STRING="Official ${ARCHITECTURE}"
+		TRACE="project/trace/ftp-master.debian.org"
 		;;
 
 	ubuntu)
 		TITLE="Ubuntu GNU/Linux"
 		STRING="Build ${ARCHITECTURE}"
+		TRACE=""
 		;;
 
 	*)
 		STRING="Snapshot ${ARCHITECTURE}"
+		TRACE=""
 		;;
 esac
 
+if [ -n "${TRACE}" ]
+then
+	echo "$(wget -q ${LH_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
+	> source/.disk/archive_trace
+fi
+
 case "${LH_DEBIAN_INSTALLER}" in
 	cdrom)
 		echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/CD Source $(date +%Y%m%d-%H:%M)" > source/.disk/info
-- 
cgit v1.0