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:
parent
d54ba390dd
commit
15e620207f
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue