mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 02:46:51 +00:00
* fix:URL for packages * chore Add co-author > > Co-authored-by: greg dryke <no-reply@github.com> * chore: Incorporate Review comments * fix: remove redundant initialization
58 lines
2.1 KiB
Bash
58 lines
2.1 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: configure-apt.sh
|
|
## Desc: Configure apt, install jq and apt-fast packages.
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/os.sh
|
|
|
|
# Stop and disable apt-daily upgrade services;
|
|
systemctl stop apt-daily.timer
|
|
systemctl disable apt-daily.timer
|
|
systemctl disable apt-daily.service
|
|
systemctl stop apt-daily-upgrade.timer
|
|
systemctl disable apt-daily-upgrade.timer
|
|
systemctl disable apt-daily-upgrade.service
|
|
|
|
# Enable retry logic for apt up to 10 times
|
|
echo "APT::Acquire::Retries \"10\";" > /etc/apt/apt.conf.d/80-retries
|
|
|
|
# Configure apt to always assume Y
|
|
echo "APT::Get::Assume-Yes \"true\";" > /etc/apt/apt.conf.d/90assumeyes
|
|
|
|
# APT understands a field called Phased-Update-Percentage which can be used to control the rollout of a new version. It is an integer between 0 and 100.
|
|
# In case you have multiple systems that you want to receive the same set of updates,
|
|
# you can set APT::Machine-ID to a UUID such that they all phase the same,
|
|
# or set APT::Get::Never-Include-Phased-Updates or APT::Get::Always-Include-Phased-Updates to true such that APT will never/always consider phased updates.
|
|
# apt-cache policy pkgname
|
|
echo 'APT::Get::Always-Include-Phased-Updates "true";' > /etc/apt/apt.conf.d/99-phased-updates
|
|
|
|
# Fix bad proxy and http headers settings
|
|
cat <<EOF >> /etc/apt/apt.conf.d/99bad_proxy
|
|
Acquire::http::Pipeline-Depth 0;
|
|
Acquire::http::No-Cache true;
|
|
Acquire::https::Pipeline-Depth 0;
|
|
Acquire::https::No-Cache true;
|
|
Acquire::BrokenProxy true;
|
|
EOF
|
|
|
|
# Uninstall unattended-upgrades
|
|
apt-get purge unattended-upgrades
|
|
|
|
echo 'APT sources'
|
|
if ! is_ubuntu24; then
|
|
cat /etc/apt/sources.list
|
|
else
|
|
cat /etc/apt/sources.list.d/ubuntu.sources
|
|
fi
|
|
|
|
apt-get update
|
|
# Install jq
|
|
apt-get install jq
|
|
|
|
if ! is_ubuntu24; then
|
|
# Install apt-fast using quick-install.sh
|
|
# https://github.com/ilikenwf/apt-fast
|
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ilikenwf/apt-fast/master/quick-install.sh)"
|
|
fi
|