diff --git a/proxmox-cloudinit-script/README.md b/proxmox-cloudinit-script/README.md index 0699c5a..7c7e27c 100644 --- a/proxmox-cloudinit-script/README.md +++ b/proxmox-cloudinit-script/README.md @@ -5,11 +5,11 @@ A user-friendly guided script for Proxmox VE 7.x. Guides you through downloading Various distros are avaible to download and configure. Current choices include: - [Ubuntu Cloud 22.04 (Jammy Jellyfish)](https://cloud-images.ubuntu.com/jammy/) - [Ubuntu Minimal Cloud 22.04 LTS (Jammy Jellyfish)](https://cloud-images.ubuntu.com/minimal/releases/jammy/) -- [Ubuntu Cloud 23.04 (Lunar Lobster)](https://cloud-images.ubuntu.com/lunar/) -- [Ubuntu Minimal Cloud 23.04 (Lunar Lobster) (Minimal)](https://cloud-images.ubuntu.com/minimal/releases/lunar/) +- [Ubuntu Cloud 23.10 (Mantic Minotau)](https://cloud-images.ubuntu.com/lunar/) +- [Ubuntu Minimal Cloud 23.10 (Mantic Minotau)](https://cloud-images.ubuntu.com/minimal/releases/mantic/) - [Debian 11 "bullseye" (GenericCloud)](https://cloud.debian.org/images/cloud/bullseye/) - [Debian 12 "bookworm" (GenericCloud)](https://cloud.debian.org/images/cloud/bookworm/) -- [Fedora Cloud 38 (base)](https://download.fedoraproject.org/pub/fedora/linux/releases/38/Cloud/) +- [Fedora Cloud 39 (base)](https://download.fedoraproject.org/pub/fedora/linux/releases/39/Cloud/) - [AlmaLinux 9 (GenericCloud)](https://repo.almalinux.org/almalinux/9/cloud/) ## FAQ diff --git a/proxmox-cloudinit-script/pve_cloudinit.sh b/proxmox-cloudinit-script/pve_cloudinit.sh index e2036f0..4996492 100644 --- a/proxmox-cloudinit-script/pve_cloudinit.sh +++ b/proxmox-cloudinit-script/pve_cloudinit.sh @@ -3,8 +3,8 @@ 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.04" "Ubuntu Cloud 23.04 (Minimal)" "Debian 11 (GenericCloud)" "Debian 12 (GenericCloud)" - "Fedora Cloud 38 (base)" "AlmaLinux 9 (GenericCloud)" "Quit") + 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 39 (base)" "AlmaLinux 9 (GenericCloud)" "Quit") select distro in "${distro_list[@]}"; do case $distro in "${distro_list[0]}") @@ -25,18 +25,18 @@ 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.04-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.04-minimal-cloudimg-amd64.img" + CLOUDIMG_NAME="ubuntu-23.10-minimal-cloudimg-amd64.img" break ;; "${distro_list[4]}") @@ -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]}") diff --git a/proxmox-truenas-script/Bash/pve_truenas.sh b/proxmox-truenas-script/Bash/pve_truenas.sh index 49a5729..0cb961f 100644 --- a/proxmox-truenas-script/Bash/pve_truenas.sh +++ b/proxmox-truenas-script/Bash/pve_truenas.sh @@ -3,7 +3,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 TRUENAS_SCALE_VERSION="22.12.3.3" + local TRUENAS_SCALE_VERSION="23.10.0.1" local TRUENAS_CORE_VERSION="13.0" local TRUENAS_CORE_UPDATE="U5.3"