shrink
This commit is contained in:
parent
31eb6e63bf
commit
72f4d4fd18
1 changed files with 5 additions and 5 deletions
10
deb.fix.sh
10
deb.fix.sh
|
@ -4,7 +4,7 @@ ROOT="$(dirname "${FILE}")"
|
|||
|
||||
ERROR='→ ERROR! ERROR! ERROR! ←'
|
||||
DISTS=(
|
||||
'bookworm' 'bookworm-backports' 'bookworm-updates'
|
||||
'bookworm' 'bookworm-backports' 'bookworm-updates'
|
||||
)
|
||||
MISSING='Contents-all.gz'
|
||||
SECTIONS=('main' 'non-free-firmware' 'contrib' 'non-free')
|
||||
|
@ -13,12 +13,12 @@ DEBIAN_ROOT='debian/dists'
|
|||
LOCAL_ROOT="${ROOT}/root/deb/debian/${DEBIAN_ROOT}"
|
||||
REMOTE_ROOT="https://deb.debian.org/${DEBIAN_ROOT}"
|
||||
|
||||
for dist in "${DISTS[@]}" ; do
|
||||
for section in "${SECTIONS[@]}" ; do
|
||||
for dist in "${DISTS[@]}"; do
|
||||
for section in "${SECTIONS[@]}"; do
|
||||
cd "${LOCAL_ROOT}/${dist}/${section}"
|
||||
rm --force "${MISSING}"
|
||||
wget "${REMOTE_ROOT}/${dist}/${section}/${MISSING}" &> /dev/null
|
||||
if [ ${?} -ne 0 ] ; then
|
||||
wget "${REMOTE_ROOT}/${dist}/${section}/${MISSING}" &>/dev/null
|
||||
if [ ${?} -ne 0 ]; then
|
||||
echo "${ERROR}"
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue