allow bypassing use of slow/unreliable archive apt sources. Useful when using own LFS cache or similar
This commit is contained in:
parent
9ddcbe18e5
commit
fda01343a5
|
@ -5,10 +5,14 @@ set -e
|
|||
|
||||
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-pins-x86_64.list /etc/apt/
|
||||
rm /etc/apt/sources.list.d/*
|
||||
apt update -o Acquire::Check-Valid-Until=false
|
||||
|
||||
until apt-get install \
|
||||
|
|
Loading…
Reference in New Issue