tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 7415cdefff996ed0de46717f717bdba823fadf65
parent 447775a5e0b2178b44826cf6802a9c5e779a45d1
Author: Hans-Christoph Steiner <hans@eds.org>
Date:   Tue, 11 Apr 2023 16:26:20 +0200

gitlab-ci: fix apt conf syntax for Acquire::Retries

Acquire is its own group, not a subgroup of APT:
https://manpages.debian.org/buster/apt/apt.conf.5.en.html#THE_ACQUIRE_GROUP

Diffstat:
M.gitlab-ci.yml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -50,9 +50,9 @@ variables: mkdir -p apt-cache export APT_CACHE_DIR="$(pwd)/apt-cache" echo 'quiet "1";' \ + 'Acquire::Retries "20";' \ 'APT::Install-Recommends "0";' \ 'APT::Install-Suggests "0";' \ - 'APT::Acquire::Retries "20";' \ 'APT::Get::Assume-Yes "true";' \ 'Dpkg::Use-Pty "0";' \ "Dir::Cache::Archives \"${APT_CACHE_DIR}\"; " \