allow bypassing use of slow/unreliable archive apt sources. Useful when using own LFS cache or similar
This commit is contained in:
parent
09c3a79d8c
commit
5fc2ab6d28
|
@ -5,10 +5,14 @@ set -e
|
||||||
|
|
||||||
ARCH=$(uname -m)
|
ARCH=$(uname -m)
|
||||||
|
|
||||||
cp /config/apt-sources-x86_64.list /etc/apt/sources.list
|
echo ARCHIVE_SOURCES -> $ARCHIVE_SOURCES
|
||||||
|
if [[ "${ARCHIVE_SOURCES}" == "true" ]]; then
|
||||||
|
rm /etc/apt/sources.list.d/*
|
||||||
|
cp /config/apt-sources-x86_64.list /etc/apt/sources.list
|
||||||
|
fi
|
||||||
|
|
||||||
cp /config/apt-hashes-x86_64.list /etc/apt/
|
cp /config/apt-hashes-x86_64.list /etc/apt/
|
||||||
cp /config/apt-pins-x86_64.list /etc/apt/
|
cp /config/apt-pins-x86_64.list /etc/apt/
|
||||||
rm /etc/apt/sources.list.d/*
|
|
||||||
apt update -o Acquire::Check-Valid-Until=false
|
apt update -o Acquire::Check-Valid-Until=false
|
||||||
|
|
||||||
until apt-get install \
|
until apt-get install \
|
||||||
|
|
Loading…
Reference in New Issue