diff --git a/ct/aurral.sh b/ct/aurral.sh index 98cef007b..516be89a6 100644 --- a/ct/aurral.sh +++ b/ct/aurral.sh @@ -38,6 +38,7 @@ function update_script() { msg_ok "Stopped Service" CLEAN_INSTALL=1 fetch_and_deploy_gh_release "aurral" "lklynet/aurral" "tarball" + NODE_VERSION="26" setup_nodejs msg_info "Updating Aurral" cd /opt/aurral diff --git a/ct/karakeep.sh b/ct/karakeep.sh index 560e564cd..04fde8a4e 100644 --- a/ct/karakeep.sh +++ b/ct/karakeep.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main" +_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func" +source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func") # Copyright (c) 2021-2026 tteck # Author: MickLesk (Canbiz) & vhsdream # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE diff --git a/ct/yuvomi.sh b/ct/yuvomi.sh index 625a0aa61..a70140cc6 100644 --- a/ct/yuvomi.sh +++ b/ct/yuvomi.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main" +_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func" +source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func") # Copyright (c) 2021-2026 community-scripts ORG # Author: MickLesk (CanbiZ) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE @@ -38,6 +40,7 @@ function update_script() { create_backup /opt/yuvomi/data /opt/yuvomi/.env CLEAN_INSTALL=1 fetch_and_deploy_gh_release "yuvomi" "ulsklyc/yuvomi" "tarball" + NODE_VERSION="24" setup_nodejs msg_info "Installing Node.js Dependencies" cd /opt/yuvomi diff --git a/install/aurral-install.sh b/install/aurral-install.sh index 3344f9ada..6db979dbc 100644 --- a/install/aurral-install.sh +++ b/install/aurral-install.sh @@ -22,7 +22,7 @@ $STD apt install -y \ fonts-dejavu-core msg_ok "Installed Dependencies" -NODE_VERSION="22" setup_nodejs +NODE_VERSION="26" setup_nodejs fetch_and_deploy_gh_release "yt-dlp" "yt-dlp/yt-dlp" "singlefile" "latest" "/usr/local/bin" "yt-dlp" fetch_and_deploy_gh_release "aurral" "lklynet/aurral" "tarball" diff --git a/install/yuvomi-install.sh b/install/yuvomi-install.sh index 521049586..7f18767e8 100644 --- a/install/yuvomi-install.sh +++ b/install/yuvomi-install.sh @@ -21,7 +21,7 @@ $STD apt install -y \ libsqlcipher-dev msg_ok "Installed Dependencies" -NODE_VERSION="22" setup_nodejs +NODE_VERSION="24" setup_nodejs fetch_and_deploy_gh_release "yuvomi" "ulsklyc/yuvomi" "tarball"