[Ubuntu] Patch azure-cli installer for Ubuntu 24.04 (#9863)

This commit is contained in:
Erik Bershel
2024-05-16 12:23:51 +02:00
committed by GitHub
parent 80ea4b55c0
commit 3edaf8a499

View File

@@ -4,8 +4,24 @@
## Desc: Install Azure CLI (az)
################################################################################
# Source the helpers for use with the script
source $HELPER_SCRIPTS/os.sh
# Install Azure CLI (instructions taken from https://docs.microsoft.com/en-us/cli/azure/install-azure-cli)
curl -fsSL https://aka.ms/InstallAzureCLIDeb | sudo bash
if is_ubuntu24; then
apt-get install apt-transport-https
curl -sL https://packages.microsoft.com/keys/microsoft.asc | \
gpg --dearmor | \
sudo tee /etc/apt/trusted.gpg.d/microsoft.asc.gpg > /dev/null
AZ_DIST="jammy"
echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_DIST main" | \
sudo tee /etc/apt/sources.list.d/azure-cli.list
sudo apt-get update
sudo apt-get install azure-cli
else
curl -fsSL https://aka.ms/InstallAzureCLIDeb | sudo bash
fi
echo "azure-cli https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt" >> $HELPER_SCRIPTS/apt-sources.txt
rm -f /etc/apt/sources.list.d/azure-cli.list