mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-17 04:51:21 +02:00
97 lines
3.4 KiB
Bash
97 lines
3.4 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: Omar Minaya | Co-Author: CrazyWolf13
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://www.kasmweb.com/docs/latest/index.html
|
|
|
|
APP="Kasm"
|
|
var_tags="${var_tags:-os}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-8192}"
|
|
var_disk="${var_disk:-30}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_arm64="${var_arm64:-yes}"
|
|
var_unprivileged="${var_unprivileged:-0}"
|
|
var_fuse="${var_fuse:-yes}"
|
|
var_tun="${var_tun:-yes}"
|
|
var_kasm_version="${var_kasm_version:-1.19.0}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
if [[ ! -d /opt/kasm/current ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
msg_info "Checking for new version"
|
|
CURRENT_VERSION=$(readlink -f /opt/kasm/current | awk -F'/' '{print $4}')
|
|
KASM_URL=$(curl -s https://kasm.com/downloads \
|
|
| grep -oP 'https://kasm-static-content\.s3\.amazonaws\.com/kasm_release_\d+\.\d+\.\d+-latest\.tar\.gz' \
|
|
| head -1)
|
|
KASM_VERSION=$(echo "$KASM_URL" | grep -oP '\d+\.\d+\.\d+(?=-latest)')
|
|
|
|
# Fallback to predefined version if online lookup failed.
|
|
if [[ -z "$KASM_VERSION" ]] || [[ -z "$KASM_URL" ]]; then
|
|
msg_warn "Unable to fetch latest Kasm release online, falling back to v${var_kasm_version}"
|
|
fi
|
|
|
|
KASM_VERSION="${KASM_VERSION:-$var_kasm_version}"
|
|
KASM_URL="${KASM_URL:-https://kasm-static-content.s3.amazonaws.com/kasm_release_${KASM_VERSION}-latest.tar.gz}"
|
|
|
|
if [[ -z "$KASM_VERSION" ]] || [[ -z "$KASM_URL" ]]; then
|
|
msg_error "Unable to detect latest Kasm release URL."
|
|
exit 250
|
|
fi
|
|
msg_info "Checked for new version"
|
|
|
|
msg_info "Removing outdated docker-compose plugin"
|
|
[ -f ~/.docker/cli-plugins/docker-compose ] && rm -rf ~/.docker/cli-plugins/docker-compose
|
|
msg_ok "Removed outdated docker-compose plugin"
|
|
|
|
if [[ -z "$CURRENT_VERSION" ]] || [[ "$KASM_VERSION" != "$CURRENT_VERSION" ]]; then
|
|
msg_info "Updating Kasm"
|
|
cd /tmp
|
|
|
|
msg_warn "WARNING: This script will run an external installer from a third-party source (https://www.kasmweb.com/)."
|
|
msg_warn "The following code is NOT maintained or audited by our repository."
|
|
msg_warn "If you have any doubts or concerns, please review the installer code before proceeding:"
|
|
msg_custom "${TAB3}${GATEWAY}${BGN}${CL}" "\e[1;34m" "→ upgrade.sh inside tar.gz $KASM_URL"
|
|
echo
|
|
read -r -p "${TAB3}Do you want to continue? [y/N]: " CONFIRM
|
|
if [[ ! "$CONFIRM" =~ ^([yY][eE][sS]|[yY])$ ]]; then
|
|
msg_error "Aborted by user. No changes have been made."
|
|
exit 10
|
|
fi
|
|
curl_download "/tmp/kasm_release_${KASM_VERSION}.tar.gz" "$KASM_URL"
|
|
tar -xf "kasm_release_${KASM_VERSION}.tar.gz"
|
|
chmod +x /tmp/kasm_release/install.sh
|
|
rm -f /tmp/kasm_release_"${KASM_VERSION}".tar.gz
|
|
|
|
bash /tmp/kasm_release/upgrade.sh --proxy-port 443
|
|
rm -rf /tmp/kasm_release
|
|
msg_ok "Updated successfully!"
|
|
else
|
|
msg_ok "No update required. Kasm is already at v${KASM_VERSION}"
|
|
|
|
fi
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
|
|
echo -e "${GATEWAY}${BGN}https://${IP}${CL}"
|