Skip to content

Commit

Permalink
Merge pull request #17 from roib20/v24.04.1
Browse files Browse the repository at this point in the history
Use Ubuntu releases
  • Loading branch information
roib20 authored Apr 28, 2024
2 parents 153c0f4 + 541d46d commit 1226bf2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions proxmox-cloudinit-script/pve_cloudinit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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]}")
Expand All @@ -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]}")
Expand Down

0 comments on commit 1226bf2

Please sign in to comment.