Skip to content

Commit

Permalink
Update to Fedora 39
Browse files Browse the repository at this point in the history
Signed-off-by: roib20 <66280613+roib20@users.noreply.github.com>
  • Loading branch information
roib20 committed Nov 15, 2023
1 parent a293626 commit 0dfe807
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions proxmox-cloudinit-script/pve_cloudinit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ choose_distro() {
echo -e "Welcome to the Proxmox Cloud-Init template installer!\n"
PS3="Please choose a distro image to download (1-6): "
local distro_list=("Ubuntu Cloud 22.04 LTS" "Ubuntu Cloud 22.04 LTS (Minimal)" "Ubuntu Cloud 23.10" "Ubuntu Cloud 23.10 (Minimal)" "Debian 11 (GenericCloud)" "Debian 12 (GenericCloud)"
"Fedora Cloud 38 (base)" "AlmaLinux 9 (GenericCloud)" "Quit")
"Fedora Cloud 39 (base)" "AlmaLinux 9 (GenericCloud)" "Quit")
select distro in "${distro_list[@]}"; do
case $distro in
"${distro_list[0]}")
Expand All @@ -25,16 +25,16 @@ choose_distro() {
;;
"${distro_list[2]}")
echo -e "${distro_list[0]}"
IMAGE_URL="https://cloud-images.ubuntu.com/lunar/current/lunar-server-cloudimg-amd64.img"
CHECKSUM_URL="https://cloud-images.ubuntu.com/lunar/current/SHA256SUMS"
IMAGE_URL="https://cloud-images.ubuntu.com/mantic/current/mantic-server-cloudimg-amd64.img"
CHECKSUM_URL="https://cloud-images.ubuntu.com/mantic/current/SHA256SUMS"
SHA=256
CLOUDIMG_NAME="lunar-server-cloudimg-amd64.img"
CLOUDIMG_NAME="mantic-server-cloudimg-amd64.img"
break
;;
"${distro_list[3]}")
echo -e "${distro_list[1]}"
IMAGE_URL="https://cloud-images.ubuntu.com/minimal/releases/lunar/release/ubuntu-23.10-minimal-cloudimg-amd64.img"
CHECKSUM_URL="https://cloud-images.ubuntu.com/minimal/releases/lunar/release/SHA256SUMS"
IMAGE_URL="https://cloud-images.ubuntu.com/minimal/releases/mantic/release/ubuntu-23.10-minimal-cloudimg-amd64.img"
CHECKSUM_URL="https://cloud-images.ubuntu.com/minimal/releases/mantic/release/SHA256SUMS"
SHA=256
CLOUDIMG_NAME="ubuntu-23.10-minimal-cloudimg-amd64.img"
break
Expand All @@ -57,10 +57,10 @@ choose_distro() {
;;
"${distro_list[6]}")
echo -e "${distro_list[3]}"
IMAGE_URL="https://download.fedoraproject.org/pub/fedora/linux/releases/38/Cloud/x86_64/images/Fedora-Cloud-Base-38-1.6.x86_64.qcow2"
CHECKSUM_URL="https://download.fedoraproject.org/pub/fedora/linux/releases/38/Cloud/x86_64/images/Fedora-Cloud-38-1.6-x86_64-CHECKSUM"
IMAGE_URL="https://download.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-Base-39-1.5.x86_64.qcow2"
CHECKSUM_URL="https://download.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-39-1.5-x86_64-CHECKSUM"
SHA=256
CLOUDIMG_NAME="Fedora-Cloud-Base-38-1.6.x86_64.qcow2"
CLOUDIMG_NAME="Fedora-Cloud-Base-39-1.5.x86_64.qcow2"
break
;;
"${distro_list[7]}")
Expand Down

0 comments on commit 0dfe807

Please sign in to comment.