mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-10 14:40:44 +02:00
Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ebc8c2173 | |||
| 902b341327 | |||
| cca5e8320a | |||
| 6109ccf128 | |||
| 639eb8e839 | |||
| cb1090623d | |||
| 9101f0c5f4 | |||
| 662d642a37 | |||
| 3b53db7f14 | |||
| b9aa86c785 | |||
| 810a6d2e82 | |||
| e4a455465d | |||
| 05d4c186fb | |||
| 1e03820eab | |||
| 62938627b2 | |||
| 11859e9e10 | |||
| afff8c91cd | |||
| 5f37e3db9f | |||
| 8bf8f8629b | |||
| 7175d81ddc | |||
| 209e003c7f | |||
| 751248222f | |||
| a3c029c341 |
+38
-1
@@ -540,11 +540,48 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
||||
|
||||
</details>
|
||||
|
||||
## 2026-09-10
|
||||
|
||||
### 🚀 Updated Scripts
|
||||
|
||||
- #### 🐞 Bug Fixes
|
||||
|
||||
- fix(solidtime): prevent composer install from hanging on root prompt [@supersoju](https://github.com/supersoju) ([#17146](https://github.com/community-scripts/ProxmoxVE/pull/17146))
|
||||
- fix(hermesagent): wait for root gateway cleanup [@steveonjava](https://github.com/steveonjava) ([#17147](https://github.com/community-scripts/ProxmoxVE/pull/17147))
|
||||
|
||||
## 2026-09-09
|
||||
|
||||
### 🆕 New Scripts
|
||||
|
||||
- Lingarr ([#17130](https://github.com/community-scripts/ProxmoxVE/pull/17130))
|
||||
|
||||
### 🚀 Updated Scripts
|
||||
|
||||
- vm: drop the discussions link from the summary [@MickLesk](https://github.com/MickLesk) ([#17117](https://github.com/community-scripts/ProxmoxVE/pull/17117))
|
||||
|
||||
- #### 🐞 Bug Fixes
|
||||
|
||||
- fix(hermesagent): stop spurious root gateway after update [@steveonjava](https://github.com/steveonjava) ([#17126](https://github.com/community-scripts/ProxmoxVE/pull/17126))
|
||||
|
||||
## 2026-09-08
|
||||
|
||||
### 🆕 New Scripts
|
||||
|
||||
- Decypharr ([#17108](https://github.com/community-scripts/ProxmoxVE/pull/17108))
|
||||
- Stash ([#17106](https://github.com/community-scripts/ProxmoxVE/pull/17106))
|
||||
|
||||
### 🚀 Updated Scripts
|
||||
|
||||
- #### 🐞 Bug Fixes
|
||||
|
||||
- Update Jellyfin FFmpeg dependency to version 8 [@MickLesk](https://github.com/MickLesk) ([#17109](https://github.com/community-scripts/ProxmoxVE/pull/17109))
|
||||
|
||||
### 💾 Core
|
||||
|
||||
- Survive an empty /usr/bin/update instead of aborting the run [@MickLesk](https://github.com/MickLesk) ([core#29](https://github.com/community-scripts/core/pull/29))
|
||||
- Treat a cut-short forge response as a failure, not as HTTP 200 [@MickLesk](https://github.com/MickLesk) ([core#31](https://github.com/community-scripts/core/pull/31))
|
||||
- Generate app headers [@github-actions[bot]](https://github.com/github-actions[bot]) ([core#28](https://github.com/community-scripts/core/pull/28))
|
||||
- cloud-init: drop the "configure in Proxmox UI" hint [@MickLesk](https://github.com/MickLesk) ([core#30](https://github.com/community-scripts/core/pull/30))
|
||||
- Survive an empty /usr/bin/update instead of aborting the run [@MickLesk](https://github.com/MickLesk) ([core#29](https://github.com/community-scripts/core/pull/29))
|
||||
|
||||
## 2026-09-07
|
||||
|
||||
|
||||
@@ -5,16 +5,16 @@ source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://logseq.com/
|
||||
# Source: https://github.com/sirrobot01/decypharr
|
||||
|
||||
APP="Logseq"
|
||||
var_tags="${var_tags:-notes;knowledge-base}"
|
||||
var_cpu="${var_cpu:-4}"
|
||||
var_ram="${var_ram:-8192}"
|
||||
var_disk="${var_disk:-16}"
|
||||
APP="Decypharr"
|
||||
var_tags="${var_tags:-arr;debrid}"
|
||||
var_cpu="${var_cpu:-2}"
|
||||
var_ram="${var_ram:-2048}"
|
||||
var_disk="${var_disk:-8}"
|
||||
var_os="${var_os:-debian}"
|
||||
var_version="${var_version:-13}"
|
||||
#var_arm64="${var_arm64:-no}" # unset = ask the user; set yes/no only when verified
|
||||
var_arm64="${var_arm64:-yes}"
|
||||
var_unprivileged="${var_unprivileged:-1}"
|
||||
|
||||
header_info "$APP"
|
||||
@@ -27,30 +27,22 @@ function update_script() {
|
||||
check_container_storage
|
||||
check_container_resources
|
||||
|
||||
if [[ ! -d /opt/logseq ]]; then
|
||||
if [[ ! -d /opt/decypharr ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
|
||||
if check_for_gh_release "logseq" "logseq/logseq"; then
|
||||
NODE_VERSION="24" NODE_MODULE="corepack" setup_nodejs
|
||||
JAVA_VERSION="21" setup_java
|
||||
if check_for_gh_release "decypharr" "sirrobot01/decypharr"; then
|
||||
msg_info "Stopping Service"
|
||||
systemctl stop decypharr
|
||||
msg_ok "Stopped Service"
|
||||
|
||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "logseq" "logseq/logseq" "tarball"
|
||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "decypharr" "sirrobot01/decypharr" "prebuild" "latest" "/opt/decypharr" "decypharr_Linux_$(arch_resolve x86_64 arm64).tar.gz"
|
||||
chmod +x /opt/decypharr/decypharr
|
||||
|
||||
msg_info "Building Logseq Web App (Patience)"
|
||||
cd /opt/logseq
|
||||
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
|
||||
export NODE_OPTIONS="--max-old-space-size=4096"
|
||||
export JAVA_TOOL_OPTIONS="-Xmx4g"
|
||||
$STD corepack enable
|
||||
$STD pnpm install --config.network-timeout=240000
|
||||
$STD pnpm release
|
||||
msg_ok "Built Logseq Web App"
|
||||
|
||||
msg_info "Reloading Webserver"
|
||||
systemctl reload nginx
|
||||
msg_ok "Reloaded Webserver"
|
||||
msg_info "Starting Service"
|
||||
systemctl start decypharr
|
||||
msg_ok "Started Service"
|
||||
msg_ok "Updated successfully!"
|
||||
fi
|
||||
exit
|
||||
@@ -63,4 +55,4 @@ 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}http://${IP}${CL}"
|
||||
echo -e "${GATEWAY}${BGN}http://${IP}:8282${CL}"
|
||||
@@ -0,0 +1,6 @@
|
||||
____ __
|
||||
/ __ \___ _______ ______ / /_ ____ ___________
|
||||
/ / / / _ \/ ___/ / / / __ \/ __ \/ __ `/ ___/ ___/
|
||||
/ /_/ / __/ /__/ /_/ / /_/ / / / / /_/ / / / /
|
||||
/_____/\___/\___/\__, / .___/_/ /_/\__,_/_/ /_/
|
||||
/____/_/
|
||||
@@ -0,0 +1,6 @@
|
||||
__ _
|
||||
/ / (_)___ ____ _____ ___________
|
||||
/ / / / __ \/ __ `/ __ `/ ___/ ___/
|
||||
/ /___/ / / / / /_/ / /_/ / / / /
|
||||
/_____/_/_/ /_/\__, /\__,_/_/ /_/
|
||||
/____/
|
||||
@@ -1,6 +0,0 @@
|
||||
__
|
||||
/ / ____ ____ _________ ____ _
|
||||
/ / / __ \/ __ `/ ___/ _ \/ __ `/
|
||||
/ /___/ /_/ / /_/ (__ ) __/ /_/ /
|
||||
/_____/\____/\__, /____/\___/\__, /
|
||||
/____/ /_/
|
||||
@@ -0,0 +1,6 @@
|
||||
_____ __ __
|
||||
/ ___// /_____ ______/ /_
|
||||
\__ \/ __/ __ `/ ___/ __ \
|
||||
___/ / /_/ /_/ (__ ) / / /
|
||||
/____/\__/\__,_/____/_/ /_/
|
||||
|
||||
@@ -52,6 +52,16 @@ function update_script() {
|
||||
set -a; source /etc/default/hermes; set +a
|
||||
/home/hermes/.local/bin/hermes update --yes
|
||||
'
|
||||
# See https://github.com/community-scripts/ProxmoxVE/issues/17123
|
||||
mapfile -t root_gateway_pids < <(ps -eo user=,pid=,args= | awk '$1 == "root" && $0 ~ /\/home\/hermes\/\.hermes\/hermes-agent\/venv\/bin\/python -m hermes_cli\.main gateway run --replace$/ { print $2 }')
|
||||
if ((${#root_gateway_pids[@]})); then
|
||||
kill -TERM "${root_gateway_pids[@]}"
|
||||
for pid in "${root_gateway_pids[@]}"; do
|
||||
while kill -0 "$pid" 2>/dev/null; do
|
||||
sleep 0.1
|
||||
done
|
||||
done
|
||||
fi
|
||||
chown -R hermes:hermes /home/hermes
|
||||
msg_ok "Updated Hermes Agent"
|
||||
|
||||
|
||||
+1
-1
@@ -64,7 +64,7 @@ function update_script() {
|
||||
ln -sf "/usr/lib/$(arch_resolve "x86_64-linux-gnu" "aarch64-linux-gnu")/libjemalloc.so.2" /usr/lib/libjemalloc.so
|
||||
fi
|
||||
$STD apt -y upgrade
|
||||
$STD apt -y --with-new-pkgs upgrade jellyfin jellyfin-server jellyfin-ffmpeg7
|
||||
$STD apt -y --with-new-pkgs upgrade jellyfin jellyfin-server jellyfin-ffmpeg8
|
||||
ln -sf /usr/lib/jellyfin-ffmpeg/ffmpeg /usr/bin/ffmpeg
|
||||
ln -sf /usr/lib/jellyfin-ffmpeg/ffprobe /usr/bin/ffprobe
|
||||
msg_ok "Updated Jellyfin"
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
#!/usr/bin/env bash
|
||||
_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
|
||||
# Source: https://github.com/lingarr-translate/lingarr
|
||||
|
||||
APP="Lingarr"
|
||||
var_tags="${var_tags:-arr;subtitles}"
|
||||
var_cpu="${var_cpu:-2}"
|
||||
var_ram="${var_ram:-4096}"
|
||||
var_disk="${var_disk:-16}"
|
||||
var_os="${var_os:-debian}"
|
||||
var_version="${var_version:-13}"
|
||||
var_arm64="${var_arm64:-yes}"
|
||||
var_unprivileged="${var_unprivileged:-1}"
|
||||
|
||||
header_info "$APP"
|
||||
variables
|
||||
color
|
||||
catch_errors
|
||||
|
||||
function update_script() {
|
||||
header_info
|
||||
check_container_storage
|
||||
check_container_resources
|
||||
|
||||
if [[ ! -d /opt/lingarr ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
|
||||
if check_for_gh_release "lingarr" "lingarr-translate/lingarr"; then
|
||||
msg_info "Stopping Service"
|
||||
systemctl stop lingarr
|
||||
msg_ok "Stopped Service"
|
||||
|
||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "lingarr" "lingarr-translate/lingarr" "tarball"
|
||||
|
||||
msg_info "Building Lingarr (Patience)"
|
||||
cd /opt/lingarr/Lingarr.Client
|
||||
$STD npm ci
|
||||
$STD npm run build
|
||||
mkdir -p /opt/lingarr/Lingarr.Server/wwwroot
|
||||
cp -r /opt/lingarr/Lingarr.Client/dist/* /opt/lingarr/Lingarr.Server/wwwroot/
|
||||
cd /opt/lingarr
|
||||
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||||
rm -rf /opt/lingarr_app
|
||||
$STD dotnet publish ./Lingarr.Server/Lingarr.Server.csproj -c Release -o /opt/lingarr_app /p:UseAppHost=false /p:Version="$(cat ~/.lingarr)"
|
||||
msg_ok "Built Lingarr"
|
||||
|
||||
msg_info "Starting Service"
|
||||
systemctl start lingarr
|
||||
msg_ok "Started Service"
|
||||
msg_ok "Updated successfully!"
|
||||
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}http://${IP}:9876${CL}"
|
||||
echo -e "${INFO}${YW}Set your translation backend in /opt/lingarr.env${CL}"
|
||||
+1
-1
@@ -45,7 +45,7 @@ function update_script() {
|
||||
|
||||
msg_info "Updating Application"
|
||||
cd /opt/solidtime
|
||||
$STD composer install --no-dev --optimize-autoloader
|
||||
COMPOSER_ALLOW_SUPERUSER=1 $STD composer install --no-dev --optimize-autoloader
|
||||
$STD npm install
|
||||
$STD npm run build
|
||||
$STD php artisan migrate --force
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
#!/usr/bin/env bash
|
||||
_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
|
||||
# Source: https://github.com/stashapp/stash
|
||||
|
||||
APP="Stash"
|
||||
var_tags="${var_tags:-media;organizer}"
|
||||
var_cpu="${var_cpu:-2}"
|
||||
var_ram="${var_ram:-2048}"
|
||||
var_disk="${var_disk:-8}"
|
||||
var_os="${var_os:-debian}"
|
||||
var_version="${var_version:-13}"
|
||||
var_gpu="${var_gpu:-yes}"
|
||||
var_arm64="${var_arm64:-yes}"
|
||||
var_unprivileged="${var_unprivileged:-1}"
|
||||
|
||||
header_info "$APP"
|
||||
variables
|
||||
color
|
||||
catch_errors
|
||||
|
||||
function update_script() {
|
||||
header_info
|
||||
check_container_storage
|
||||
check_container_resources
|
||||
|
||||
if [[ ! -d /opt/stash ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
|
||||
if check_for_gh_release "stash" "stashapp/stash"; then
|
||||
msg_info "Stopping Service"
|
||||
systemctl stop stash
|
||||
msg_ok "Stopped Service"
|
||||
|
||||
fetch_and_deploy_gh_release "stash" "stashapp/stash" "singlefile" "latest" "/opt/stash" "$(arch_resolve stash-linux stash-linux-arm64v8)"
|
||||
|
||||
msg_info "Starting Service"
|
||||
systemctl start stash
|
||||
msg_ok "Started Service"
|
||||
msg_ok "Updated successfully!"
|
||||
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}http://${IP}:9999${CL}"
|
||||
@@ -0,0 +1,47 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://github.com/sirrobot01/decypharr
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt install -y fuse3
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
fetch_and_deploy_gh_release "decypharr" "sirrobot01/decypharr" "prebuild" "latest" "/opt/decypharr" "decypharr_Linux_$(arch_resolve x86_64 arm64).tar.gz"
|
||||
chmod +x /opt/decypharr/decypharr
|
||||
|
||||
msg_info "Creating Service"
|
||||
mkdir -p /opt/decypharr_data
|
||||
cat <<EOF >/etc/systemd/system/decypharr.service
|
||||
[Unit]
|
||||
Description=Decypharr
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=root
|
||||
WorkingDirectory=/opt/decypharr
|
||||
ExecStart=/opt/decypharr/decypharr --config /opt/decypharr_data
|
||||
Restart=on-failure
|
||||
RestartSec=5
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now decypharr
|
||||
msg_ok "Created Service"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
cleanup_lxc
|
||||
@@ -33,7 +33,7 @@ setup_deb822_repo \
|
||||
msg_ok "Set up Jellyfin Repository"
|
||||
|
||||
msg_info "Installing Jellyfin"
|
||||
ensure_dependencies jellyfin jellyfin-ffmpeg7
|
||||
ensure_dependencies jellyfin jellyfin-ffmpeg8
|
||||
ln -sf /usr/lib/jellyfin-ffmpeg/ffmpeg /usr/bin/ffmpeg
|
||||
ln -sf /usr/lib/jellyfin-ffmpeg/ffprobe /usr/bin/ffprobe
|
||||
msg_ok "Installed Jellyfin"
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://github.com/lingarr-translate/lingarr
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
PG_VERSION="17" setup_postgresql
|
||||
PG_DB_NAME="lingarr" PG_DB_USER="lingarr" setup_postgresql_db
|
||||
NODE_VERSION="24" setup_nodejs
|
||||
|
||||
DOTNET_VERSION="10" DOTNET_TYPE="sdk" setup_dotnet
|
||||
|
||||
fetch_and_deploy_gh_release "lingarr" "lingarr-translate/lingarr" "tarball"
|
||||
|
||||
msg_info "Building Lingarr (Patience)"
|
||||
cd /opt/lingarr/Lingarr.Client
|
||||
$STD npm ci
|
||||
$STD npm run build
|
||||
mkdir -p /opt/lingarr/Lingarr.Server/wwwroot
|
||||
cp -r /opt/lingarr/Lingarr.Client/dist/* /opt/lingarr/Lingarr.Server/wwwroot/
|
||||
cd /opt/lingarr
|
||||
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||||
$STD dotnet publish ./Lingarr.Server/Lingarr.Server.csproj -c Release -o /opt/lingarr_app /p:UseAppHost=false /p:Version="$(cat ~/.lingarr)"
|
||||
msg_ok "Built Lingarr"
|
||||
|
||||
msg_info "Configuring Lingarr"
|
||||
mkdir -p /opt/lingarr_data/{config,plugins}
|
||||
cat <<EOF >/opt/lingarr.env
|
||||
ASPNETCORE_ENVIRONMENT=Production
|
||||
ASPNETCORE_URLS=http://+:9876
|
||||
ASPNETCORE_HTTP_PORTS=9876
|
||||
|
||||
DB_CONNECTION=postgresql
|
||||
DB_HOST=127.0.0.1
|
||||
DB_PORT=5432
|
||||
DB_DATABASE=lingarr
|
||||
DB_USERNAME=lingarr
|
||||
DB_PASSWORD=${PG_DB_PASS}
|
||||
|
||||
PLUGINS_PATH=/opt/lingarr_data/plugins
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT=1
|
||||
|
||||
# Translation backend. Alternatives: openai, deepl, anthropic, gemini, localai
|
||||
SERVICE_TYPE=libretranslate
|
||||
LIBRE_TRANSLATE_URL=http://CHANGE_ME:5000
|
||||
EOF
|
||||
chmod 600 /opt/lingarr.env
|
||||
msg_ok "Configured Lingarr"
|
||||
|
||||
msg_info "Creating Service"
|
||||
cat <<EOF >/etc/systemd/system/lingarr.service
|
||||
[Unit]
|
||||
Description=Lingarr
|
||||
Wants=network-online.target
|
||||
After=network-online.target postgresql.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=root
|
||||
WorkingDirectory=/opt/lingarr_app
|
||||
EnvironmentFile=/opt/lingarr.env
|
||||
ExecStart=/usr/bin/dotnet /opt/lingarr_app/Lingarr.Server.dll
|
||||
Restart=on-failure
|
||||
RestartSec=10
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now lingarr
|
||||
msg_ok "Created Service"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
cleanup_lxc
|
||||
@@ -1,86 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://logseq.com/
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt install -y \
|
||||
git \
|
||||
nginx \
|
||||
build-essential \
|
||||
libcairo2-dev \
|
||||
libpango1.0-dev \
|
||||
libjpeg-dev \
|
||||
libgif-dev \
|
||||
librsvg2-dev
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
NODE_VERSION="24" NODE_MODULE="corepack" setup_nodejs
|
||||
JAVA_VERSION="21" setup_java
|
||||
|
||||
msg_info "Installing Clojure CLI"
|
||||
cd /tmp
|
||||
curl_download "linux-install.sh" "https://github.com/clojure/brew-install/releases/latest/download/linux-install.sh"
|
||||
$STD bash linux-install.sh
|
||||
rm -f linux-install.sh
|
||||
msg_ok "Installed Clojure CLI"
|
||||
|
||||
fetch_and_deploy_gh_release "logseq" "logseq/logseq" "tarball"
|
||||
|
||||
msg_info "Building Logseq Web App (Patience)"
|
||||
cd /opt/logseq
|
||||
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
|
||||
export NODE_OPTIONS="--max-old-space-size=4096"
|
||||
export JAVA_TOOL_OPTIONS="-Xmx4g"
|
||||
$STD corepack enable
|
||||
$STD pnpm install --config.network-timeout=240000
|
||||
$STD pnpm release
|
||||
msg_ok "Built Logseq Web App"
|
||||
|
||||
msg_info "Generating Self-Signed Certificate"
|
||||
create_self_signed_cert "logseq"
|
||||
msg_ok "Generated Self-Signed Certificate"
|
||||
|
||||
msg_info "Configuring Nginx"
|
||||
cat <<'EOF' >/etc/nginx/sites-available/logseq
|
||||
server {
|
||||
listen 80 default_server;
|
||||
server_name _;
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl default_server;
|
||||
http2 on;
|
||||
server_name _;
|
||||
|
||||
ssl_certificate /etc/ssl/logseq/logseq.crt;
|
||||
ssl_certificate_key /etc/ssl/logseq/logseq.key;
|
||||
|
||||
root /opt/logseq/static;
|
||||
index index.html;
|
||||
|
||||
add_header Cross-Origin-Opener-Policy same-origin always;
|
||||
add_header Cross-Origin-Embedder-Policy require-corp always;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
EOF
|
||||
nginx_enable_site logseq
|
||||
msg_ok "Configured Nginx"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
cleanup_lxc
|
||||
@@ -28,7 +28,31 @@ fi
|
||||
|
||||
if ! dpkg -l | grep -q 'libssl1.1'; then
|
||||
msg_info "Installing libssl (if needed)"
|
||||
curl_download "/tmp/libssl.deb" "https://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u8_$(arch_resolve).deb"
|
||||
# libssl1.1 is bullseye's last build, and the pinned filename rotted twice over:
|
||||
# the point release moves on its own schedule, and bullseye left
|
||||
# security.debian.org when its LTS ended. Take the newest build from whichever
|
||||
# pool still carries one instead of hardcoding a name.
|
||||
LIBSSL_ARCH=$(arch_resolve)
|
||||
LIBSSL_URL=""
|
||||
LIBSSL_DEB=""
|
||||
for POOL in \
|
||||
"https://security.debian.org/debian-security/pool/updates/main/o/openssl" \
|
||||
"https://archive.debian.org/debian-security/pool/updates/main/o/openssl" \
|
||||
"https://archive.debian.org/debian/pool/main/o/openssl"; do
|
||||
FOUND=$(curl -fsSL "$POOL/" | grep -oE "libssl1\.1_[^\"<>]+_${LIBSSL_ARCH}\.deb" | sort -V | tail -n1 || true)
|
||||
[[ -z "$FOUND" ]] && continue
|
||||
# Newest across every pool, not the first hit: the security archive still
|
||||
# only carries buster, whose 1.1.1n is older than bullseye's 1.1.1w.
|
||||
if [[ -z "$LIBSSL_DEB" || "$(printf '%s\n%s\n' "$LIBSSL_DEB" "$FOUND" | sort -V | tail -n1)" == "$FOUND" ]]; then
|
||||
LIBSSL_DEB="$FOUND"
|
||||
LIBSSL_URL="$POOL/$FOUND"
|
||||
fi
|
||||
done
|
||||
if [[ -z "$LIBSSL_URL" ]]; then
|
||||
msg_error "No libssl1.1 package for ${LIBSSL_ARCH} found in any Debian pool"
|
||||
exit 1
|
||||
fi
|
||||
curl_download "/tmp/libssl.deb" "$LIBSSL_URL"
|
||||
$STD dpkg -i /tmp/libssl.deb
|
||||
rm -f /tmp/libssl.deb
|
||||
msg_ok "Installed libssl1.1"
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://github.com/stashapp/stash
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
setup_ffmpeg
|
||||
setup_hwaccel
|
||||
|
||||
fetch_and_deploy_gh_release "stash" "stashapp/stash" "singlefile" "latest" "/opt/stash" "$(arch_resolve stash-linux stash-linux-arm64v8)"
|
||||
|
||||
msg_info "Creating Service"
|
||||
mkdir -p /opt/stash_data
|
||||
cat <<EOF >/etc/systemd/system/stash.service
|
||||
[Unit]
|
||||
Description=Stash
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=root
|
||||
WorkingDirectory=/opt/stash
|
||||
Environment=STASH_CONFIG_FILE=/opt/stash_data/config.yml
|
||||
ExecStart=/opt/stash/stash
|
||||
Restart=on-failure
|
||||
RestartSec=5
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now stash
|
||||
msg_ok "Created Service"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
cleanup_lxc
|
||||
@@ -0,0 +1,189 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
|
||||
function header_info {
|
||||
clear
|
||||
cat <<"EOF"
|
||||
____ ______ __ ____ __ __
|
||||
/ __ \_________ _ ______ ___ ____ _ __ / ____/_ _____ _____/ /_ / __ \___ / /__ / /____
|
||||
/ /_/ / ___/ __ \| |/_/ __ `__ \/ __ \| |/_/ / / __/ / / / _ \/ ___/ __/ / / / / _ \/ / _ \/ __/ _ \
|
||||
/ ____/ / / /_/ /> </ / / / / / /_/ /> < / /_/ / /_/ / __(__ ) /_ / /_/ / __/ / __/ /_/ __/
|
||||
/_/ /_/ \____/_/|_/_/ /_/ /_/\____/_/|_| \____/\__,_/\___/____/\__/ /_____/\___/_/\___/\__/\___/
|
||||
|
||||
EOF
|
||||
}
|
||||
|
||||
spinner() {
|
||||
local pid=$1
|
||||
local delay=0.1
|
||||
local spinstr='|/-\'
|
||||
while ps -p $pid >/dev/null; do
|
||||
printf " [%c] " "$spinstr"
|
||||
spinstr=${spinstr#?}${spinstr%"${spinstr#?}"}
|
||||
sleep $delay
|
||||
printf "\r"
|
||||
done
|
||||
printf " \r"
|
||||
}
|
||||
|
||||
set -eEuo pipefail
|
||||
YW=$(echo "\033[33m")
|
||||
BL=$(echo "\033[36m")
|
||||
RD=$(echo "\033[01;31m")
|
||||
GN=$(echo "\033[1;92m")
|
||||
CL=$(echo "\033[m")
|
||||
TAB=" "
|
||||
CM="${TAB}✔️${TAB}${CL}"
|
||||
|
||||
# Telemetry
|
||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func) 2>/dev/null || true
|
||||
declare -f init_tool_telemetry &>/dev/null && init_tool_telemetry "guest-delete" "pve"
|
||||
|
||||
GUEST_LOG=$(mktemp)
|
||||
trap 'rm -f "$GUEST_LOG"' EXIT
|
||||
|
||||
# pct and qm differ in both their subcommands and their list layout, so every
|
||||
# guest carries its type from the menu through to the destroy call.
|
||||
stop_guest() {
|
||||
local type=$1 id=$2 pid
|
||||
if [ "$type" == "ct" ]; then
|
||||
pct stop "$id" >"$GUEST_LOG" 2>&1 &
|
||||
else
|
||||
qm stop "$id" >"$GUEST_LOG" 2>&1 &
|
||||
fi
|
||||
pid=$!
|
||||
spinner "$pid"
|
||||
wait "$pid" || true
|
||||
}
|
||||
|
||||
destroy_guest() {
|
||||
local type=$1 id=$2 pid
|
||||
if [ "$type" == "ct" ]; then
|
||||
pct destroy "$id" -f >"$GUEST_LOG" 2>&1 &
|
||||
else
|
||||
qm destroy "$id" --purge --destroy-unreferenced-disks >"$GUEST_LOG" 2>&1 &
|
||||
fi
|
||||
pid=$!
|
||||
spinner "$pid"
|
||||
wait "$pid"
|
||||
}
|
||||
|
||||
header_info
|
||||
echo "Loading..."
|
||||
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Proxmox VE Guest Deletion" --yesno "This will delete LXC containers and/or VMs. Proceed?" 10 58
|
||||
|
||||
NODE=$(hostname)
|
||||
containers=$(pct list 2>/dev/null | tail -n +2 || true)
|
||||
vms=$(qm list 2>/dev/null | tail -n +2 || true)
|
||||
|
||||
if [ -z "$containers" ] && [ -z "$vms" ]; then
|
||||
whiptail --title "Guest Delete" --msgbox "No LXC containers or VMs available!" 10 60
|
||||
exit 234
|
||||
fi
|
||||
|
||||
declare -A GUEST_TYPE=()
|
||||
menu_items=()
|
||||
FORMAT="%-4s %-20s %-10s"
|
||||
|
||||
if [ -n "$containers" ]; then
|
||||
menu_items+=("ALL-CT" "$(printf "$FORMAT" "CT" "Delete ALL containers" "")" "OFF")
|
||||
while read -r line; do
|
||||
[ -z "$line" ] && continue
|
||||
# pct list: VMID Status [Lock] Name -- Lock is usually blank, so take the
|
||||
# name from the end of the row rather than a fixed column.
|
||||
container_id=$(awk '{print $1}' <<<"$line")
|
||||
container_status=$(awk '{print $2}' <<<"$line")
|
||||
container_name=$(awk '{print $NF}' <<<"$line")
|
||||
GUEST_TYPE[$container_id]="ct"
|
||||
menu_items+=("$container_id" "$(printf "$FORMAT" "CT" "$container_name" "$container_status")" "OFF")
|
||||
done <<<"$containers"
|
||||
fi
|
||||
|
||||
if [ -n "$vms" ]; then
|
||||
menu_items+=("ALL-VM" "$(printf "$FORMAT" "VM" "Delete ALL VMs" "")" "OFF")
|
||||
while read -r line; do
|
||||
[ -z "$line" ] && continue
|
||||
# qm list: VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID
|
||||
vm_id=$(awk '{print $1}' <<<"$line")
|
||||
vm_name=$(awk '{print $2}' <<<"$line")
|
||||
vm_status=$(awk '{print $3}' <<<"$line")
|
||||
GUEST_TYPE[$vm_id]="vm"
|
||||
menu_items+=("$vm_id" "$(printf "$FORMAT" "VM" "$vm_name" "$vm_status")" "OFF")
|
||||
done <<<"$vms"
|
||||
fi
|
||||
|
||||
CHOICES=$(whiptail --title "Guest Delete" \
|
||||
--checklist "Select LXC containers and VMs to delete:" 25 70 13 \
|
||||
"${menu_items[@]}" 3>&2 2>&1 1>&3 || true)
|
||||
|
||||
if [ -z "$CHOICES" ]; then
|
||||
whiptail --title "Guest Delete" \
|
||||
--msgbox "No guests selected!" 10 60
|
||||
exit 0
|
||||
fi
|
||||
|
||||
read -p "Delete guests manually or automatically? (Default: manual) m/a: " DELETE_MODE
|
||||
DELETE_MODE=${DELETE_MODE:-m}
|
||||
|
||||
# Expand the ALL entries, keeping each ID once so selecting ALL alongside a
|
||||
# single guest does not try to destroy that guest twice.
|
||||
expanded_ids=""
|
||||
for choice in $(echo "$CHOICES" | tr -d '"' | tr -s ' ' '\n'); do
|
||||
case "$choice" in
|
||||
ALL-CT) expanded_ids+=$'\n'$(awk '{print $1}' <<<"$containers") ;;
|
||||
ALL-VM) expanded_ids+=$'\n'$(awk '{print $1}' <<<"$vms") ;;
|
||||
*) expanded_ids+=$'\n'"$choice" ;;
|
||||
esac
|
||||
done
|
||||
selected_ids=$(echo "$expanded_ids" | sed '/^$/d' | awk '!seen[$0]++')
|
||||
|
||||
for guest_id in $selected_ids; do
|
||||
guest_type="${GUEST_TYPE[$guest_id]:-}"
|
||||
if [ -z "$guest_type" ]; then
|
||||
echo -e "${BL}[Info]${RD} Skipping unknown guest $guest_id...${CL}"
|
||||
continue
|
||||
fi
|
||||
|
||||
if [ "$guest_type" == "ct" ]; then
|
||||
label="container $guest_id"
|
||||
else
|
||||
label="VM $guest_id"
|
||||
fi
|
||||
|
||||
if [[ "$DELETE_MODE" == "a" ]]; then
|
||||
echo -e "${BL}[Info]${GN} Automatically deleting $label...${CL}"
|
||||
else
|
||||
read -p "Delete $label? (y/N): " CONFIRM
|
||||
if [[ ! "$CONFIRM" =~ ^[Yy]$ ]]; then
|
||||
echo -e "${BL}[Info]${RD} Skipping $label...${CL}"
|
||||
continue
|
||||
fi
|
||||
echo -e "${BL}[Info]${GN} Deleting $label...${CL}"
|
||||
fi
|
||||
|
||||
# Stop only once the deletion is confirmed, so declining leaves a running
|
||||
# guest running instead of powering it off on the way out.
|
||||
if [ "$guest_type" == "ct" ]; then
|
||||
status=$(pct status "$guest_id" 2>/dev/null || echo "unknown")
|
||||
else
|
||||
status=$(qm status "$guest_id" 2>/dev/null || echo "unknown")
|
||||
fi
|
||||
|
||||
if [ "$status" == "status: running" ]; then
|
||||
echo -e "${BL}[Info]${GN} Stopping $label...${CL}"
|
||||
stop_guest "$guest_type" "$guest_id"
|
||||
echo -e "${BL}[Info]${GN} ${label^} stopped.${CL}"
|
||||
fi
|
||||
|
||||
if destroy_guest "$guest_type" "$guest_id"; then
|
||||
echo -e "${CM}${GN}${label^} deleted.${CL}"
|
||||
else
|
||||
whiptail --title "Error" --msgbox "Failed to delete ${label}.\n\n$(tail -n 5 "$GUEST_LOG")" 15 70
|
||||
fi
|
||||
done
|
||||
|
||||
header_info
|
||||
echo -e "${GN}Deletion process completed.${CL}\n"
|
||||
@@ -1,119 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2026 community-scripts ORG
|
||||
# Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
|
||||
function header_info {
|
||||
clear
|
||||
cat <<"EOF"
|
||||
____ __ _ ________ ____ __ __
|
||||
/ __ \_________ _ ______ ___ ____ _ __ / / | |/ / ____/ / __ \___ / /__ / /____
|
||||
/ /_/ / ___/ __ \| |/_/ __ `__ \/ __ \| |/_/ / / | / / / / / / _ \/ / _ \/ __/ _ \
|
||||
/ ____/ / / /_/ /> </ / / / / / /_/ /> < / /___/ / /___ / /_/ / __/ / __/ /_/ __/
|
||||
/_/ /_/ \____/_/|_/_/ /_/ /_/\____/_/|_| /_____/_/|_\____/ /_____/\___/_/\___/\__/\___/
|
||||
|
||||
EOF
|
||||
}
|
||||
|
||||
spinner() {
|
||||
local pid=$1
|
||||
local delay=0.1
|
||||
local spinstr='|/-\'
|
||||
while ps -p $pid >/dev/null; do
|
||||
printf " [%c] " "$spinstr"
|
||||
spinstr=${spinstr#?}${spinstr%"${spinstr#?}"}
|
||||
sleep $delay
|
||||
printf "\r"
|
||||
done
|
||||
printf " \r"
|
||||
}
|
||||
|
||||
set -eEuo pipefail
|
||||
YW=$(echo "\033[33m")
|
||||
BL=$(echo "\033[36m")
|
||||
RD=$(echo "\033[01;31m")
|
||||
GN=$(echo "\033[1;92m")
|
||||
CL=$(echo "\033[m")
|
||||
TAB=" "
|
||||
CM="${TAB}✔️${TAB}${CL}"
|
||||
|
||||
# Telemetry
|
||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func) 2>/dev/null || true
|
||||
declare -f init_tool_telemetry &>/dev/null && init_tool_telemetry "lxc-delete" "pve"
|
||||
|
||||
header_info
|
||||
echo "Loading..."
|
||||
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Proxmox VE LXC Deletion" --yesno "This will delete LXC containers. Proceed?" 10 58
|
||||
|
||||
NODE=$(hostname)
|
||||
containers=$(pct list | tail -n +2 | awk '{print $0 " " $4}')
|
||||
|
||||
if [ -z "$containers" ]; then
|
||||
whiptail --title "LXC Container Delete" --msgbox "No LXC containers available!" 10 60
|
||||
exit 234
|
||||
fi
|
||||
|
||||
menu_items=("ALL" "Delete ALL containers" "OFF") # Add as first option
|
||||
FORMAT="%-10s %-15s %-10s"
|
||||
|
||||
while read -r container; do
|
||||
container_id=$(echo $container | awk '{print $1}')
|
||||
container_name=$(echo $container | awk '{print $2}')
|
||||
container_status=$(echo $container | awk '{print $3}')
|
||||
formatted_line=$(printf "$FORMAT" "$container_name" "$container_status")
|
||||
menu_items+=("$container_id" "$formatted_line" "OFF")
|
||||
done <<<"$containers"
|
||||
|
||||
CHOICES=$(whiptail --title "LXC Container Delete" \
|
||||
--checklist "Select LXC containers to delete:" 25 60 13 \
|
||||
"${menu_items[@]}" 3>&2 2>&1 1>&3)
|
||||
|
||||
if [ -z "$CHOICES" ]; then
|
||||
whiptail --title "LXC Container Delete" \
|
||||
--msgbox "No containers selected!" 10 60
|
||||
exit 0
|
||||
fi
|
||||
|
||||
read -p "Delete containers manually or automatically? (Default: manual) m/a: " DELETE_MODE
|
||||
DELETE_MODE=${DELETE_MODE:-m}
|
||||
|
||||
selected_ids=$(echo "$CHOICES" | tr -d '"' | tr -s ' ' '\n')
|
||||
|
||||
# If "ALL" is selected, override with all container IDs
|
||||
if echo "$selected_ids" | grep -q "^ALL$"; then
|
||||
selected_ids=$(echo "$containers" | awk '{print $1}')
|
||||
fi
|
||||
|
||||
for container_id in $selected_ids; do
|
||||
status=$(pct status $container_id)
|
||||
|
||||
if [ "$status" == "status: running" ]; then
|
||||
echo -e "${BL}[Info]${GN} Stopping container $container_id...${CL}"
|
||||
pct stop $container_id &
|
||||
sleep 5
|
||||
echo -e "${BL}[Info]${GN} Container $container_id stopped.${CL}"
|
||||
fi
|
||||
|
||||
if [[ "$DELETE_MODE" == "a" ]]; then
|
||||
echo -e "${BL}[Info]${GN} Automatically deleting container $container_id...${CL}"
|
||||
pct destroy "$container_id" -f &
|
||||
pid=$!
|
||||
spinner $pid
|
||||
[ $? -eq 0 ] && echo "Container $container_id deleted." || whiptail --title "Error" --msgbox "Failed to delete container $container_id." 10 60
|
||||
else
|
||||
read -p "Delete container $container_id? (y/N): " CONFIRM
|
||||
if [[ "$CONFIRM" =~ ^[Yy]$ ]]; then
|
||||
echo -e "${BL}[Info]${GN} Deleting container $container_id...${CL}"
|
||||
pct destroy "$container_id" -f &
|
||||
pid=$!
|
||||
spinner $pid
|
||||
[ $? -eq 0 ] && echo "Container $container_id deleted." || whiptail --title "Error" --msgbox "Failed to delete container $container_id." 10 60
|
||||
else
|
||||
echo -e "${BL}[Info]${RD} Skipping container $container_id...${CL}"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
header_info
|
||||
echo -e "${GN}Deletion process completed.${CL}\n"
|
||||
@@ -675,4 +675,3 @@ if [ "$START_VM" == "yes" ]; then
|
||||
fi
|
||||
|
||||
msg_ok "Completed successfully!\n"
|
||||
echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836"
|
||||
|
||||
@@ -612,4 +612,3 @@ if [ "$START_VM" == "yes" ]; then
|
||||
fi
|
||||
|
||||
msg_ok "Completed successfully!\n"
|
||||
echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836"
|
||||
|
||||
Reference in New Issue
Block a user