mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-08 06:46:28 +00:00
The 25 most-installed ct scripts still on misc/build.func, by install count: homarr, influxdb, sonarr, radarr, networkoptimizer, authentik, stirling-pdf, seerr, prowlarr, searxng, wordpress, zabbix, omada, homeassistant, pegaprox, crafty-controller, iventoy, homelable, flaresolverr, metube, netbird, casaos, obsidian-livesync, npmplus, wazuh. ProxmoxVE goes from 115 migrated to 140. Same three checks as #16749, since "migrate" has meant more than a line swap before: - None of the 25 has an alpine-* variant, so there is no merge to do. - None references misc/ outside its bootstrap line. - Two functions exist only in misc/ (_gl_asset_urls, _send_abort_telemetry) and none of the 25 calls either. So it is one line per script. Every head is byte-identical to the ones migrated earlier, each diff is exactly 3+/1-, and all 25 parse. Worth watching: scanopy is not in this set but sits at 32.9% success, and casaos at 49.4% and networkoptimizer at 48.6% are in it. If those two move, the engine is one changed variable among others.
90 lines
3.6 KiB
Bash
90 lines
3.6 KiB
Bash
#!/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 tteck
|
||
# Author: tteck (tteckster)
|
||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||
# Source: https://www.stirlingpdf.com/ | Github: https://github.com/Stirling-Tools/Stirling-PDF
|
||
|
||
APP="Stirling-PDF"
|
||
var_tags="${var_tags:-pdf-editor}"
|
||
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:-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/Stirling-PDF ]]; then
|
||
msg_error "No ${APP} Installation Found!"
|
||
exit
|
||
fi
|
||
|
||
if check_for_gh_release "stirling-pdf" "Stirling-Tools/Stirling-PDF"; then
|
||
if [[ ! -f /etc/systemd/system/unoserver.service ]]; then
|
||
msg_custom "⚠️ " "\e[33m" "Legacy installation detected – please recreate the container using the latest install script."
|
||
exit 0
|
||
fi
|
||
|
||
PYTHON_VERSION="3.12" setup_uv
|
||
JAVA_VERSION="25" setup_java
|
||
|
||
msg_info "Patching Native Libraries for LXC Compatibility"
|
||
ensure_dependencies patchelf
|
||
find /usr/lib -name "libicudata.so.*" -exec patchelf --clear-execstack {} \; || true
|
||
msg_ok "Patched Native Libraries"
|
||
|
||
if [[ -f /etc/systemd/system/libreoffice-listener.service ]]; then
|
||
msg_info "Removing Conflicting LibreOffice Listener"
|
||
systemctl disable -q --now libreoffice-listener
|
||
rm -f /etc/systemd/system/libreoffice-listener.service
|
||
sed -i '/^Requires=libreoffice-listener.service$/d' /etc/systemd/system/stirlingpdf.service /etc/systemd/system/unoserver.service
|
||
sed -i 's/^After=syslog.target network.target libreoffice-listener.service$/After=syslog.target network.target unoserver.service/' /etc/systemd/system/stirlingpdf.service
|
||
sed -i 's/^After=libreoffice-listener.service$/After=network.target/' /etc/systemd/system/unoserver.service
|
||
systemctl daemon-reload
|
||
systemctl reset-failed libreoffice-listener.service 2>/dev/null || true
|
||
msg_ok "Removed Conflicting LibreOffice Listener"
|
||
fi
|
||
|
||
msg_info "Stopping Services"
|
||
systemctl stop stirlingpdf unoserver
|
||
msg_ok "Stopped Services"
|
||
|
||
if [[ -f ~/.Stirling-PDF-login ]]; then
|
||
USE_ORIGINAL_FILENAME=true fetch_and_deploy_gh_release "stirling-pdf" "Stirling-Tools/Stirling-PDF" "singlefile" "latest" "/opt/Stirling-PDF" "Stirling-PDF-with-login.jar"
|
||
mv /opt/Stirling-PDF/Stirling-PDF-with-login.jar /opt/Stirling-PDF/Stirling-PDF.jar
|
||
else
|
||
USE_ORIGINAL_FILENAME=true fetch_and_deploy_gh_release "stirling-pdf" "Stirling-Tools/Stirling-PDF" "singlefile" "latest" "/opt/Stirling-PDF" "Stirling-PDF.jar"
|
||
fi
|
||
|
||
msg_info "Refreshing Font Cache"
|
||
$STD fc-cache -fv
|
||
msg_ok "Font Cache Updated"
|
||
|
||
msg_info "Starting Services"
|
||
systemctl start unoserver stirlingpdf
|
||
msg_ok "Started Services"
|
||
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}:8080${CL}"
|