diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_disk | 10 | ||||
-rwxr-xr-x | helpers/lh_source_disk | 10 |
2 files changed, 20 insertions, 0 deletions
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 |