mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-03 15:35:59 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 200b02577f | |||
| aa54abcf50 | |||
| a37b36520c | |||
| 22d9eece6f | |||
| 518b6778e2 |
@@ -445,6 +445,14 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
## 2026-04-23
|
||||||
|
|
||||||
|
### 💾 Core
|
||||||
|
|
||||||
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- core: hotfix - prefer silent mode on PHS env conflict [@MickLesk](https://github.com/MickLesk) ([#13951](https://github.com/community-scripts/ProxmoxVE/pull/13951))
|
||||||
|
|
||||||
## 2026-04-22
|
## 2026-04-22
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
@@ -460,6 +468,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- add --clear to uv venv in update_script() to prevent interactive prompt [@MickLesk](https://github.com/MickLesk) ([#13926](https://github.com/community-scripts/ProxmoxVE/pull/13926))
|
- add --clear to uv venv in update_script() to prevent interactive prompt [@MickLesk](https://github.com/MickLesk) ([#13926](https://github.com/community-scripts/ProxmoxVE/pull/13926))
|
||||||
|
|
||||||
|
### 💾 Core
|
||||||
|
|
||||||
|
- #### ✨ New Features
|
||||||
|
|
||||||
|
- core: Add PHS_VERBOSE env var to skip verbose mode prompts [@gormanity](https://github.com/gormanity) ([#13797](https://github.com/community-scripts/ProxmoxVE/pull/13797))
|
||||||
|
|
||||||
## 2026-04-21
|
## 2026-04-21
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
|
|||||||
@@ -1,83 +0,0 @@
|
|||||||
#!/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: MickLesk (CanbiZ)
|
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
||||||
# Source: https://github.com/transmute-app/transmute
|
|
||||||
|
|
||||||
APP="Transmute"
|
|
||||||
var_tags="${var_tags:-files;converter}"
|
|
||||||
var_cpu="${var_cpu:-4}"
|
|
||||||
var_ram="${var_ram:-4096}"
|
|
||||||
var_disk="${var_disk:-16}"
|
|
||||||
var_os="${var_os:-debian}"
|
|
||||||
var_version="${var_version:-13}"
|
|
||||||
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/transmute ]]; then
|
|
||||||
msg_error "No ${APP} Installation Found!"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "calibre" "kovidgoyal/calibre" "prebuild" "latest" "/opt/calibre" "calibre-*-x86_64.txz"
|
|
||||||
ln -sf /opt/calibre/ebook-convert /usr/bin/ebook-convert
|
|
||||||
fetch_and_deploy_gh_release "drawio" "jgraph/drawio-desktop" "binary" "latest" "" "drawio-amd64-*.deb"
|
|
||||||
fetch_and_deploy_gh_release "pandoc" "jgm/pandoc" "binary" "latest" "" "pandoc-*-amd64.deb"
|
|
||||||
|
|
||||||
if check_for_gh_release "transmute" "transmute-app/transmute"; then
|
|
||||||
msg_info "Stopping Service"
|
|
||||||
systemctl stop transmute
|
|
||||||
msg_ok "Stopped Service"
|
|
||||||
|
|
||||||
msg_info "Backing up Data"
|
|
||||||
cp /opt/transmute/backend/.env /opt/transmute.env.bak
|
|
||||||
cp -r /opt/transmute/data /opt/transmute_data_bak
|
|
||||||
msg_ok "Backed up Data"
|
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "transmute" "transmute-app/transmute" "tarball"
|
|
||||||
|
|
||||||
msg_info "Updating Python Dependencies"
|
|
||||||
cd /opt/transmute
|
|
||||||
$STD uv venv --clear /opt/transmute/.venv
|
|
||||||
$STD uv pip install --python /opt/transmute/.venv/bin/python -r requirements.txt
|
|
||||||
msg_ok "Updated Python Dependencies"
|
|
||||||
|
|
||||||
msg_info "Rebuilding Frontend"
|
|
||||||
cd /opt/transmute/frontend
|
|
||||||
$STD npm ci
|
|
||||||
$STD npm run build
|
|
||||||
msg_ok "Rebuilt Frontend"
|
|
||||||
|
|
||||||
msg_info "Restoring Data"
|
|
||||||
cp /opt/transmute.env.bak /opt/transmute/backend/.env
|
|
||||||
cp -r /opt/transmute_data_bak/. /opt/transmute/data/
|
|
||||||
rm -f /opt/transmute.env.bak
|
|
||||||
rm -rf /opt/transmute_data_bak
|
|
||||||
msg_ok "Restored Data"
|
|
||||||
|
|
||||||
msg_info "Starting Service"
|
|
||||||
systemctl start transmute
|
|
||||||
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 "${TAB}${GATEWAY}${BGN}http://${IP}:3313${CL}"
|
|
||||||
@@ -1,99 +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://github.com/transmute-app/transmute
|
|
||||||
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
||||||
color
|
|
||||||
verb_ip6
|
|
||||||
catch_errors
|
|
||||||
setting_up_container
|
|
||||||
network_check
|
|
||||||
update_os
|
|
||||||
|
|
||||||
UV_PYTHON="3.13" setup_uv
|
|
||||||
NODE_VERSION="25" setup_nodejs
|
|
||||||
setup_ffmpeg
|
|
||||||
setup_gs
|
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
|
||||||
$STD apt install -y \
|
|
||||||
inkscape \
|
|
||||||
tesseract-ocr \
|
|
||||||
libreoffice-impress \
|
|
||||||
libreoffice-common \
|
|
||||||
libmagic1 \
|
|
||||||
xvfb \
|
|
||||||
libsm6 \
|
|
||||||
libxext6 \
|
|
||||||
libpango-1.0-0 \
|
|
||||||
libopengl0 \
|
|
||||||
libpangocairo-1.0-0 \
|
|
||||||
libgdk-pixbuf-2.0-0 \
|
|
||||||
libffi-dev \
|
|
||||||
libcairo2 \
|
|
||||||
librsvg2-bin \
|
|
||||||
unrar-free \
|
|
||||||
python3-numpy \
|
|
||||||
python3-lxml \
|
|
||||||
python3-tinycss2 \
|
|
||||||
python3-cssselect
|
|
||||||
msg_ok "Installed Dependencies"
|
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "pandoc" "jgm/pandoc" "binary" "latest" "" "pandoc-*-amd64.deb"
|
|
||||||
fetch_and_deploy_gh_release "calibre" "kovidgoyal/calibre" "prebuild" "latest" "/opt/calibre" "calibre-*-x86_64.txz"
|
|
||||||
ln -sf /opt/calibre/ebook-convert /usr/bin/ebook-convert
|
|
||||||
fetch_and_deploy_gh_release "drawio" "jgraph/drawio-desktop" "binary" "latest" "" "drawio-amd64-*.deb"
|
|
||||||
fetch_and_deploy_gh_release "transmute" "transmute-app/transmute" "tarball"
|
|
||||||
|
|
||||||
msg_info "Setting up Python Backend"
|
|
||||||
cd /opt/transmute
|
|
||||||
$STD uv venv --clear /opt/transmute/.venv
|
|
||||||
$STD uv pip install --python /opt/transmute/.venv/bin/python -r requirements.txt
|
|
||||||
ln -sf /opt/transmute/.venv/bin/weasyprint /usr/bin/weasyprint
|
|
||||||
msg_ok "Set up Python Backend"
|
|
||||||
|
|
||||||
msg_info "Configuring Transmute"
|
|
||||||
SECRET_KEY=$(openssl rand -hex 64)
|
|
||||||
cat <<EOF >/opt/transmute/backend/.env
|
|
||||||
AUTH_SECRET_KEY=${SECRET_KEY}
|
|
||||||
HOST=0.0.0.0
|
|
||||||
PORT=3313
|
|
||||||
DATA_DIR=/opt/transmute/data
|
|
||||||
WEB_DIR=/opt/transmute/frontend/dist
|
|
||||||
QT_QPA_PLATFORM=offscreen
|
|
||||||
EOF
|
|
||||||
mkdir -p /opt/transmute/data
|
|
||||||
msg_ok "Configured Transmute"
|
|
||||||
|
|
||||||
msg_info "Building Frontend"
|
|
||||||
cd /opt/transmute/frontend
|
|
||||||
$STD npm ci
|
|
||||||
$STD npm run build
|
|
||||||
msg_ok "Built Frontend"
|
|
||||||
|
|
||||||
msg_info "Creating Service"
|
|
||||||
cat <<EOF >/etc/systemd/system/transmute.service
|
|
||||||
[Unit]
|
|
||||||
Description=Transmute File Converter
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
Type=simple
|
|
||||||
WorkingDirectory=/opt/transmute
|
|
||||||
EnvironmentFile=/opt/transmute/backend/.env
|
|
||||||
ExecStart=/usr/bin/xvfb-run -a -s "-screen 0 1024x768x24 -nolisten tcp" /opt/transmute/.venv/bin/python backend/main.py
|
|
||||||
Restart=on-failure
|
|
||||||
RestartSec=5
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
EOF
|
|
||||||
systemctl enable -q --now transmute
|
|
||||||
msg_ok "Created Service"
|
|
||||||
|
|
||||||
motd_ssh
|
|
||||||
customize
|
|
||||||
cleanup_lxc
|
|
||||||
+41
-9
@@ -2702,6 +2702,10 @@ advanced_settings() {
|
|||||||
# STEP 28: Verbose Mode & Confirmation
|
# STEP 28: Verbose Mode & Confirmation
|
||||||
# ═══════════════════════════════════════════════════════════════════════════
|
# ═══════════════════════════════════════════════════════════════════════════
|
||||||
28)
|
28)
|
||||||
|
# PHS_VERBOSE forces verbose mode and skips the prompt
|
||||||
|
if [[ "$PHS_MODE" == "verbose" ]]; then
|
||||||
|
_verbose="yes"
|
||||||
|
else
|
||||||
local verbose_default_flag="--defaultno"
|
local verbose_default_flag="--defaultno"
|
||||||
[[ "$_verbose" == "yes" ]] && verbose_default_flag=""
|
[[ "$_verbose" == "yes" ]] && verbose_default_flag=""
|
||||||
|
|
||||||
@@ -2713,6 +2717,7 @@ advanced_settings() {
|
|||||||
else
|
else
|
||||||
_verbose="no"
|
_verbose="no"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
# Build summary
|
# Build summary
|
||||||
local ct_type_desc="Unprivileged"
|
local ct_type_desc="Unprivileged"
|
||||||
[[ "$_ct_type" == "0" ]] && ct_type_desc="Privileged"
|
[[ "$_ct_type" == "0" ]] && ct_type_desc="Privileged"
|
||||||
@@ -3444,7 +3449,7 @@ configure_ssh_settings() {
|
|||||||
# msg_menu()
|
# msg_menu()
|
||||||
#
|
#
|
||||||
# - Displays a numbered menu for update_script() functions
|
# - Displays a numbered menu for update_script() functions
|
||||||
# - In silent mode (PHS_SILENT=1): auto-selects the default option
|
# - In silent mode (PHS_MODE=silent): auto-selects the default option
|
||||||
# - In interactive mode: shows menu via read with 10s timeout + default fallback
|
# - In interactive mode: shows menu via read with 10s timeout + default fallback
|
||||||
# - Usage: CHOICE=$(msg_menu "Title" "tag1" "Description 1" "tag2" "Desc 2" ...)
|
# - Usage: CHOICE=$(msg_menu "Title" "tag1" "Description 1" "tag2" "Desc 2" ...)
|
||||||
# - The first item is always the default
|
# - The first item is always the default
|
||||||
@@ -3468,7 +3473,7 @@ msg_menu() {
|
|||||||
local count=${#tags[@]}
|
local count=${#tags[@]}
|
||||||
|
|
||||||
# Silent mode: return default immediately
|
# Silent mode: return default immediately
|
||||||
if [[ -n "${PHS_SILENT+x}" ]] && [[ "${PHS_SILENT}" == "1" ]]; then
|
if [[ "$PHS_MODE" == "silent" ]]; then
|
||||||
echo "$default_tag"
|
echo "$default_tag"
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
@@ -3504,6 +3509,34 @@ msg_menu() {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# resolve_phs_mode()
|
||||||
|
#
|
||||||
|
# - Resolves PHS_SILENT/PHS_VERBOSE env vars into a single PHS_MODE enum
|
||||||
|
# - Values: "silent", "verbose", "interactive"
|
||||||
|
# - If both PHS_SILENT=1 and PHS_VERBOSE=1, shows a conflict warning
|
||||||
|
# and defaults to "interactive"
|
||||||
|
# - Should be called once early, before any mode-dependent logic
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
resolve_phs_mode() {
|
||||||
|
if [[ -n "${PHS_SILENT+x}" ]] && [[ "${PHS_SILENT}" == "1" ]] && [[ -n "${PHS_VERBOSE+x}" ]] && [[ "${PHS_VERBOSE}" == "1" ]]; then
|
||||||
|
# Conflict handling must never block unattended/non-TTY updates.
|
||||||
|
# Prefer silent mode to keep automation safe.
|
||||||
|
if [[ -t 0 ]] && [[ -t 1 ]] && command -v whiptail >/dev/null 2>&1; then
|
||||||
|
whiptail --backtitle "Proxmox VE Helper Scripts" \
|
||||||
|
--title "Configuration Conflict Warning" \
|
||||||
|
--msgbox "PHS_SILENT and PHS_VERBOSE are both set.\n\nFalling back to silent mode." 10 58 || true
|
||||||
|
fi
|
||||||
|
PHS_MODE="silent"
|
||||||
|
elif [[ -n "${PHS_SILENT+x}" ]] && [[ "${PHS_SILENT}" == "1" ]]; then
|
||||||
|
PHS_MODE="silent"
|
||||||
|
elif [[ -n "${PHS_VERBOSE+x}" ]] && [[ "${PHS_VERBOSE}" == "1" ]]; then
|
||||||
|
PHS_MODE="verbose"
|
||||||
|
else
|
||||||
|
PHS_MODE="interactive"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# start()
|
# start()
|
||||||
#
|
#
|
||||||
@@ -3514,17 +3547,16 @@ msg_menu() {
|
|||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
start() {
|
start() {
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/tools.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/tools.func)
|
||||||
|
resolve_phs_mode
|
||||||
if command -v pveversion >/dev/null 2>&1; then
|
if command -v pveversion >/dev/null 2>&1; then
|
||||||
install_script || return 0
|
install_script || return 0
|
||||||
return 0
|
return 0
|
||||||
elif [ ! -z ${PHS_SILENT+x} ] && [[ "${PHS_SILENT}" == "1" ]]; then
|
elif [[ "$PHS_MODE" == "silent" ]]; then
|
||||||
VERBOSE="no"
|
VERBOSE="no"
|
||||||
set_std_mode
|
set_std_mode
|
||||||
ensure_profile_loaded
|
elif [[ "$PHS_MODE" == "verbose" ]]; then
|
||||||
get_lxc_ip
|
VERBOSE="yes"
|
||||||
update_script
|
set_std_mode
|
||||||
update_motd_ip
|
|
||||||
cleanup_lxc
|
|
||||||
else
|
else
|
||||||
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "${APP} LXC Update/Setting" --menu \
|
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "${APP} LXC Update/Setting" --menu \
|
||||||
"Support/Update functions for ${APP} LXC. Choose an option:" \
|
"Support/Update functions for ${APP} LXC. Choose an option:" \
|
||||||
@@ -3548,12 +3580,12 @@ start() {
|
|||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
fi
|
||||||
ensure_profile_loaded
|
ensure_profile_loaded
|
||||||
get_lxc_ip
|
get_lxc_ip
|
||||||
update_script
|
update_script
|
||||||
update_motd_ip
|
update_motd_ip
|
||||||
cleanup_lxc
|
cleanup_lxc
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|||||||
+2
-2
@@ -940,7 +940,7 @@ is_verbose_mode() {
|
|||||||
#
|
#
|
||||||
# - Detects if script is running in unattended/non-interactive mode
|
# - Detects if script is running in unattended/non-interactive mode
|
||||||
# - Checks MODE variable first (primary method)
|
# - Checks MODE variable first (primary method)
|
||||||
# - Falls back to legacy flags (PHS_SILENT, var_unattended)
|
# - Falls back to legacy flags (PHS_MODE, var_unattended)
|
||||||
# - Returns 0 (true) if unattended, 1 (false) otherwise
|
# - Returns 0 (true) if unattended, 1 (false) otherwise
|
||||||
# - Used by prompt functions to auto-apply defaults
|
# - Used by prompt functions to auto-apply defaults
|
||||||
#
|
#
|
||||||
@@ -984,7 +984,7 @@ is_unattended() {
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
# Legacy fallbacks for compatibility
|
# Legacy fallbacks for compatibility
|
||||||
[[ "${PHS_SILENT:-0}" == "1" ]] && return 0
|
[[ "${PHS_MODE:-}" == "silent" ]] && return 0
|
||||||
[[ "${var_unattended:-}" =~ ^(yes|true|1)$ ]] && return 0
|
[[ "${var_unattended:-}" =~ ^(yes|true|1)$ ]] && return 0
|
||||||
[[ "${UNATTENDED:-}" =~ ^(yes|true|1)$ ]] && return 0
|
[[ "${UNATTENDED:-}" =~ ^(yes|true|1)$ ]] && return 0
|
||||||
|
|
||||||
|
|||||||
+4
-1
@@ -6336,12 +6336,15 @@ function setup_nodejs() {
|
|||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Scenario 1: Already installed at target version - just update packages/modules
|
# Scenario 1: Already installed at target version - upgrade to latest minor/patch + update packages/modules
|
||||||
if [[ -n "$CURRENT_NODE_VERSION" && "$CURRENT_NODE_VERSION" == "$NODE_VERSION" ]]; then
|
if [[ -n "$CURRENT_NODE_VERSION" && "$CURRENT_NODE_VERSION" == "$NODE_VERSION" ]]; then
|
||||||
msg_info "Update Node.js $NODE_VERSION"
|
msg_info "Update Node.js $NODE_VERSION"
|
||||||
|
|
||||||
ensure_apt_working || return 100
|
ensure_apt_working || return 100
|
||||||
|
|
||||||
|
# Upgrade to the latest minor/patch release from NodeSource
|
||||||
|
$STD apt-get install -y --only-upgrade nodejs 2>/dev/null || true
|
||||||
|
|
||||||
# Pin npm to 11.11.0 to work around Node.js 22.22.2 regression (nodejs/node#62425)
|
# Pin npm to 11.11.0 to work around Node.js 22.22.2 regression (nodejs/node#62425)
|
||||||
$STD npm install -g npm@11.11.0 2>/dev/null || true
|
$STD npm install -g npm@11.11.0 2>/dev/null || true
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user