diff --git a/kasmvnc/main.tf b/kasmvnc/main.tf index 83b55a3..3a730ff 100644 --- a/kasmvnc/main.tf +++ b/kasmvnc/main.tf @@ -23,7 +23,7 @@ variable "port" { variable "kasm_version" { type = string description = "Version of KasmVNC to install." - default = "1.3.1" + default = "1.3.2" } variable "desktop_environment" { diff --git a/kasmvnc/run.sh b/kasmvnc/run.sh index cbde54d..0a41301 100644 --- a/kasmvnc/run.sh +++ b/kasmvnc/run.sh @@ -82,15 +82,15 @@ if ! check_installed; then case $distro in ubuntu | debian | kali) case $version in - "18.04") - install_deb "https://github.com/kasmtech/KasmVNC/releases/download/v${VERSION}/kasmvncserver_bionic_${VERSION}_$${arch}.deb" - ;; "20.04") install_deb "https://github.com/kasmtech/KasmVNC/releases/download/v${VERSION}/kasmvncserver_focal_${VERSION}_$${arch}.deb" ;; "22.04") install_deb "https://github.com/kasmtech/KasmVNC/releases/download/v${VERSION}/kasmvncserver_jammy_${VERSION}_$${arch}.deb" ;; + "24.04") + install_deb "https://github.com/kasmtech/KasmVNC/releases/download/v${VERSION}/kasmvncserver_noble_${VERSION}_$${arch}.deb" + ;; *) echo "Unsupported Ubuntu/Debian/Kali version: $${version}" exit 1 @@ -113,7 +113,7 @@ if ! check_installed; then fi ;; alpine) - if [[ "$version" == "3.17" || "$version" == "3.18" || "$version" == "3.19" ]]; then + if [[ "$version" == "3.17" || "$version" == "3.18" || "$version" == "3.19" || "$version" == "3.20" ]]; then install_alpine "https://github.com/kasmtech/KasmVNC/releases/download/v${VERSION}/kasmvnc.alpine_$${version}_$${arch}.tgz" else echo "Unsupported Alpine version: $${version}"