Skip to content

Commit 6b3db04

Browse files
authored
chore(ci): Try to fix apt retries (vectordotdev#17393)
ruby/setup-ruby-pkgs#3 (comment) and other online posts make it seem like the `APT::` prefix shouldn't be there. `man apt.conf` is unclear on the subject so I figure we can just see if this seems to improve things. Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 6c57ca0 commit 6b3db04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/environment/bootstrap-ubuntu-20.04.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
export DEBIAN_FRONTEND=noninteractive
1212
export ACCEPT_EULA=Y
1313

14-
echo 'APT::Acquire::Retries "5";' > /etc/apt/apt.conf.d/80-retries
14+
echo 'Acquire::Retries "5";' > /etc/apt/apt.conf.d/80-retries
1515

1616
apt update --yes
1717

0 commit comments

Comments
 (0)