From b17adf6ed7e817c11164b70523f6652ed7039dfa Mon Sep 17 00:00:00 2001 From: Joshua Ross Date: Wed, 20 Aug 2025 13:49:27 -0400 Subject: [PATCH] Add: Alma Generica Cloud Image Added Alma Linux Cloud Image to script to be able to use Alma Linux as a base image for cloud deployments. --- scripts/image-update | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/scripts/image-update b/scripts/image-update index cc9ccdf..2165059 100755 --- a/scripts/image-update +++ b/scripts/image-update @@ -216,6 +216,30 @@ function set_image_values() { err "Unknown distro, only works for Fedora 40+" ;; esac + elif [[ "${DISTRO_NAME}" == "alma" ]]; then + case $RELEASE_NAME in + 8) + file_name="AlmaLinux-8-GenericCloud-UEFI-latest.x86_64.qcow2" + remote_url="https://repo.almalinux.org/almalinux/8/cloud/x86_64/images/AlmaLinux-8-GenericCloud-UEFI-latest.x86_64.qcow2" + remote_shasum_url="https://repo.almalinux.org/almalinux/8/cloud/x86_64/images/CHECKSUM" + shasum_algorithm="256" + ;; + 9) + file_name="AlmaLinux-9-GenericCloud-latest.x86_64.qcow2" + remote_url="https://repo.almalinux.org/almalinux/9/cloud/x86_64/images/AlmaLinux-9-GenericCloud-latest.x86_64.qcow2" + remote_shasum_url="https://repo.almalinux.org/almalinux/9/cloud/x86_64/images/CHECKSUM" + shasum_algorithm="256" + ;; + 10) + file_name="AlmaLinux-10-GenericCloud-latest.x86_64.qcow2" + remote_url="https://repo.almalinux.org/almalinux/10/cloud/x86_64/images/AlmaLinux-10-GenericCloud-latest.x86_64.qcow2" + remote_shasum_url="https://repo.almalinux.org/almalinux/10/cloud/x86_64/images/CHECKSUM" + shasum_algorithm="256" + ;; + *) + err "Unknown distro, only works for Alma 8+" + ;; + esac elif [[ "${DISTRO_NAME}" == "ubuntu" ]]; then case $RELEASE_NAME in focal | 20)