From 541d46d310a379546dde4c2e8db4a3c708d22d88 Mon Sep 17 00:00:00 2001 From: roib20 <66280613+roib20@users.noreply.github.com> Date: Sun, 28 Apr 2024 14:20:28 +0300 Subject: [PATCH] Use Ubuntu releases Signed-off-by: roib20 <66280613+roib20@users.noreply.github.com> --- proxmox-cloudinit-script/pve_cloudinit.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/proxmox-cloudinit-script/pve_cloudinit.sh b/proxmox-cloudinit-script/pve_cloudinit.sh index 0abc83b..6e97aae 100644 --- a/proxmox-cloudinit-script/pve_cloudinit.sh +++ b/proxmox-cloudinit-script/pve_cloudinit.sh @@ -9,10 +9,10 @@ choose_distro() { case $distro in "${distro_list[0]}") echo -e "${distro_list[0]}" - IMAGE_URL="https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img" - CHECKSUM_URL="https://cloud-images.ubuntu.com/jammy/current/SHA256SUMS" + IMAGE_URL="https://cloud-images.ubuntu.com/releases/jammy/release/ubuntu-22.04-server-cloudimg-amd64.img" + CHECKSUM_URL="https://cloud-images.ubuntu.com/releases/jammy/release/SHA256SUMS" SHA=256 - CLOUDIMG_NAME="jammy-server-cloudimg-amd64.img" + CLOUDIMG_NAME="ubuntu-22.04-server-cloudimg-amd64.img" break ;; "${distro_list[1]}") @@ -25,10 +25,10 @@ choose_distro() { ;; "${distro_list[2]}") echo -e "${distro_list[0]}" - IMAGE_URL="https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img" - CHECKSUM_URL="https://cloud-images.ubuntu.com/noble/current/SHA256SUMS" + IMAGE_URL="https://cloud-images.ubuntu.com/releases/noble/release/ubuntu-24.04-server-cloudimg-amd64.img" + CHECKSUM_URL="https://cloud-images.ubuntu.com/releases/noble/release/SHA256SUMS" SHA=256 - CLOUDIMG_NAME="noble-server-cloudimg-amd64.img" + CLOUDIMG_NAME="ubuntu-24.04-server-cloudimg-amd64.img" break ;; "${distro_list[3]}")