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