binary_disk: Don't create .disk/archive_trace any more

As proposed in
https://lists.debian.org/debian-live/2023/08/msg00008.html
The information that is required for rebuilding the image is already
found in .disk/generator, .disk/info and .disk/mkisofs
This commit is contained in:
Roland Clobus 2023-08-20 11:36:37 +02:00
parent d54ba390dd
commit 15e620207f
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
1 changed files with 0 additions and 20 deletions

View File

@ -53,34 +53,14 @@ case "${LB_MODE}" in
debian) debian)
TITLE="Debian GNU/Linux" TITLE="Debian GNU/Linux"
STRING="Snapshot ${ARCHITECTURE}" STRING="Snapshot ${ARCHITECTURE}"
TRACE="project/trace/ftp-master.debian.org"
;; ;;
*) *)
TITLE="Debian GNU/Linux" TITLE="Debian GNU/Linux"
STRING="Snapshot ${ARCHITECTURE}" STRING="Snapshot ${ARCHITECTURE}"
TRACE=""
;; ;;
esac esac
if [ -n "${TRACE}" ]
then
case "${LB_DERIVATIVE}" in
true)
echo "$(echo ${LB_PARENT_MIRROR_BOOTSTRAP} | awk -F:// '{ print $2 }'): $(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
> binary/.disk/archive_trace
echo "$(echo ${LB_MIRROR_BOOTSTRAP} | awk -F:// '{ print $2 }'): $(wget -q ${LB_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
>> binary/.disk/archive_trace
;;
false)
echo "$(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
> binary/.disk/archive_trace
;;
esac
fi
case "${LB_DEBIAN_INSTALLER}" in case "${LB_DEBIAN_INSTALLER}" in
cdrom) cdrom)
DISK_LABEL="LIVE/CD" DISK_LABEL="LIVE/CD"