This commit is contained in:
Marc Beninca 2024-09-28 21:21:42 +02:00
parent 31eb6e63bf
commit 72f4d4fd18
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -4,7 +4,7 @@ ROOT="$(dirname "${FILE}")"
ERROR='→ ERROR! ERROR! ERROR! ←' ERROR='→ ERROR! ERROR! ERROR! ←'
DISTS=( DISTS=(
'bookworm' 'bookworm-backports' 'bookworm-updates' 'bookworm' 'bookworm-backports' 'bookworm-updates'
) )
MISSING='Contents-all.gz' MISSING='Contents-all.gz'
SECTIONS=('main' 'non-free-firmware' 'contrib' 'non-free') SECTIONS=('main' 'non-free-firmware' 'contrib' 'non-free')
@ -13,12 +13,12 @@ DEBIAN_ROOT='debian/dists'
LOCAL_ROOT="${ROOT}/root/deb/debian/${DEBIAN_ROOT}" LOCAL_ROOT="${ROOT}/root/deb/debian/${DEBIAN_ROOT}"
REMOTE_ROOT="https://deb.debian.org/${DEBIAN_ROOT}" REMOTE_ROOT="https://deb.debian.org/${DEBIAN_ROOT}"
for dist in "${DISTS[@]}" ; do for dist in "${DISTS[@]}"; do
for section in "${SECTIONS[@]}" ; do for section in "${SECTIONS[@]}"; do
cd "${LOCAL_ROOT}/${dist}/${section}" cd "${LOCAL_ROOT}/${dist}/${section}"
rm --force "${MISSING}" rm --force "${MISSING}"
wget "${REMOTE_ROOT}/${dist}/${section}/${MISSING}" &> /dev/null wget "${REMOTE_ROOT}/${dist}/${section}/${MISSING}" &>/dev/null
if [ ${?} -ne 0 ] ; then if [ ${?} -ne 0 ]; then
echo "${ERROR}" echo "${ERROR}"
fi fi
done done