mirror of
https://github.com/actions/runner-images.git
synced 2025-12-17 15:20:11 +00:00
* Cache Update Some base images of the ubuntu on AWS contains an outdated cache. So, when tries to installs the package we receive an error `unable to locate package`. To install the package, added the line `apt-get update` to update the cache. * Rebase and commit
36 lines
1.3 KiB
Bash
36 lines
1.3 KiB
Bash
#!/bin/bash -e
|
|
|
|
# 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
|
|
|
|
# This step should completely disable any automatic updates except manual
|
|
sudo sed -i 's/APT::Periodic::Update-Package-Lists "1"/APT::Periodic::Update-Package-Lists "0"/' /etc/apt/apt.conf.d/20auto-upgrades
|
|
|
|
# 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
|
|
|
|
# Uninstall unattended-upgrades
|
|
apt-get remove unattended-upgrades
|
|
|
|
# Use apt-fast for parallel downloads
|
|
add-apt-repository -y ppa:apt-fast/stable
|
|
|
|
# Need to limit arch for default apt repos due to
|
|
# https://github.com/actions/virtual-environments/issues/1961
|
|
sed -i'' -E 's/^deb http:\/\/(azure.archive|security).ubuntu.com/deb [arch=amd64,i386] http:\/\/\1.ubuntu.com/' /etc/apt/sources.list
|
|
|
|
echo 'APT sources limited to the actual architectures'
|
|
cat /etc/apt/sources.list
|
|
|
|
apt-get update
|
|
# Install aria2 , jq and apt-fast
|
|
apt-get install aria2 jq apt-fast
|