2025-06-18 18:17:40 +02:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
2026-01-06 13:28:12 +01:00
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
2025-10-20 09:35:38 +02:00
|
|
|
|
# Author: MickLesk
|
2025-06-18 18:17:40 +02:00
|
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
several scripts: add additional github link in source (#12282)
* fix(error-handler): prevent silent() from re-enabling error handling during recovery
Root cause: silent() (core.func) unconditionally calls set -Eeuo pipefail
and trap 'error_handler' ERR after every command. When build_container()
intentionally disables error handling for its recovery section, any
intermediate call through silent()/ re-enables it. This causes the
grep/sed pipeline for missing_cmd extraction to trigger error_handler
(grep returns exit code 1 on no match + pipefail = fatal).
Fixes:
1. silent(): Save errexit state before disabling, only restore if it was
active. Callers that intentionally disabled error handling (e.g.
build_container recovery) are no longer silently re-enabled.
2. build.func: Add || true to missing_cmd grep pipeline as defense-in-depth
against pipeline failure propagation.
3. build.func: Add explicit set +Eeuo pipefail / trap - ERR after
post_update_to_api() call, before error classification grep/sed section.
4. build.func: Remove stale global combined_log variable from variables()
that used a different path format (/tmp/install-SESSION-combined.log)
than the actual local variable (/tmp/NSAPP-CTID-SESSION.log). The global
was never written to and caused confusion when error_handler displayed it.
* Update build.func
* chore(install): add Github source links to all setup_nodejs scripts
52 install scripts had a project website in '# Source:' but no GitHub
link. Merged the GitHub repo URL into the Source header as:
# Source: https://website.com/ | Github: https://github.com/OWNER/REPO
Repos sourced from fetch_and_deploy_gh_release calls, get_latest_github_release
calls, or known project repos for npm/pip installed apps.
Two scripts (fumadocs, pve-scripts-local) had no Source line at all —
added one. Shinobi skipped (GitLab-only, no GitHub repo).
* chore(install): add Github source links to all fetch_and_deploy scripts
77 additional install scripts had fetch_and_deploy_gh_release calls but
no GitHub link in the Source header. Merged the primary app repo into
the Source header as:
# Source: https://website.com/ | Github: https://github.com/OWNER/REPO
Where multiple fetch_and_deploy calls existed (app + dependency), the
primary app repo was selected:
- ersatztv: ErsatzTV/ErsatzTV (not ffmpeg)
- firefly: firefly-iii/firefly-iii (not data-importer)
- komga: gotson/komga (not kepubify dep)
- sabnzbd: sabnzbd/sabnzbd (not par2cmdline-turbo dep)
- signoz: SigNoz/signoz (not otel-collector)
- tunarr: chrisbenincasa/tunarr (not ffmpeg dep)
Also fixed cosmos-install.sh double https:// in Source URL.
Skipped: autocaliweb (source already on codeberg, GitHub repos are deps only)
* revert: restore misc/build.func and misc/core.func to main state
These error-handler fixes belong to fix/error-handler-recovery, not to
this sources-only branch.
* chore(ct,tools): sync Source headers with install/ and add Github links to addon scripts
2026-02-24 15:11:53 +01:00
|
|
|
|
# Source: https://github.com/filebrowserspace/quantum
|
2025-06-18 18:17:40 +02:00
|
|
|
|
|
|
|
|
|
|
function header_info() {
|
|
|
|
|
|
clear
|
|
|
|
|
|
cat <<"EOF"
|
|
|
|
|
|
_______ __ ____ ____ __
|
|
|
|
|
|
/ ____(_) /__ / __ )_________ _ __________ _____ / __ \__ ______ _____ / /___ ______ ___
|
|
|
|
|
|
/ /_ / / / _ \/ __ / ___/ __ \ | /| / / ___/ _ \/ ___/ / / / / / / / __ `/ __ \/ __/ / / / __ `__ \
|
|
|
|
|
|
/ __/ / / / __/ /_/ / / / /_/ / |/ |/ (__ ) __/ / / /_/ / /_/ / /_/ / / / / /_/ /_/ / / / / / /
|
|
|
|
|
|
/_/ /_/_/\___/_____/_/ \____/|__/|__/____/\___/_/ \___\_\__,_/\__,_/_/ /_/\__/\__,_/_/ /_/ /_/
|
|
|
|
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
YW=$(echo "\033[33m")
|
|
|
|
|
|
GN=$(echo "\033[1;92m")
|
|
|
|
|
|
RD=$(echo "\033[01;31m")
|
|
|
|
|
|
BL=$(echo "\033[36m")
|
|
|
|
|
|
CL=$(echo "\033[m")
|
|
|
|
|
|
CM="${GN}✔️${CL}"
|
|
|
|
|
|
CROSS="${RD}✖️${CL}"
|
|
|
|
|
|
INFO="${BL}ℹ️${CL}"
|
|
|
|
|
|
|
|
|
|
|
|
APP="FileBrowser Quantum"
|
|
|
|
|
|
INSTALL_PATH="/usr/local/bin/filebrowser"
|
|
|
|
|
|
CONFIG_PATH="/usr/local/community-scripts/fq-config.yaml"
|
|
|
|
|
|
DEFAULT_PORT=8080
|
|
|
|
|
|
SRC_DIR="/"
|
2025-11-13 11:23:48 +01:00
|
|
|
|
TMP_BIN="/tmp/filebrowser.$$"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
|
2026-02-17 16:36:20 +01:00
|
|
|
|
# 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 "filebrowser-quantum" "addon"
|
|
|
|
|
|
|
2025-06-18 18:17:40 +02:00
|
|
|
|
# Get primary IP
|
|
|
|
|
|
IFACE=$(ip -4 route | awk '/default/ {print $5; exit}')
|
|
|
|
|
|
IP=$(ip -4 addr show "$IFACE" | awk '/inet / {print $2}' | cut -d/ -f1 | head -n 1)
|
|
|
|
|
|
[[ -z "$IP" ]] && IP=$(hostname -I | awk '{print $1}')
|
|
|
|
|
|
[[ -z "$IP" ]] && IP="127.0.0.1"
|
|
|
|
|
|
|
|
|
|
|
|
# OS Detection
|
|
|
|
|
|
if [[ -f "/etc/alpine-release" ]]; then
|
|
|
|
|
|
OS="Alpine"
|
|
|
|
|
|
SERVICE_PATH="/etc/init.d/filebrowser"
|
|
|
|
|
|
PKG_MANAGER="apk add --no-cache"
|
|
|
|
|
|
elif [[ -f "/etc/debian_version" ]]; then
|
|
|
|
|
|
OS="Debian"
|
|
|
|
|
|
SERVICE_PATH="/etc/systemd/system/filebrowser.service"
|
|
|
|
|
|
PKG_MANAGER="apt-get install -y"
|
|
|
|
|
|
else
|
|
|
|
|
|
echo -e "${CROSS} Unsupported OS detected. Exiting."
|
|
|
|
|
|
exit 1
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
header_info
|
|
|
|
|
|
|
2025-10-20 09:35:38 +02:00
|
|
|
|
function msg_info() { echo -e "${INFO} ${YW}$1...${CL}"; }
|
|
|
|
|
|
function msg_ok() { echo -e "${CM} ${GN}$1${CL}"; }
|
|
|
|
|
|
function msg_error() { echo -e "${CROSS} ${RD}$1${CL}"; }
|
2025-06-18 18:17:40 +02:00
|
|
|
|
|
|
|
|
|
|
# Detect legacy FileBrowser installation
|
|
|
|
|
|
LEGACY_DB="/usr/local/community-scripts/filebrowser.db"
|
|
|
|
|
|
LEGACY_BIN="/usr/local/bin/filebrowser"
|
|
|
|
|
|
LEGACY_SERVICE_DEB="/etc/systemd/system/filebrowser.service"
|
|
|
|
|
|
LEGACY_SERVICE_ALP="/etc/init.d/filebrowser"
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -f "$LEGACY_DB" || -f "$LEGACY_BIN" && ! -f "$CONFIG_PATH" ]]; then
|
|
|
|
|
|
echo -e "${YW}⚠️ Detected legacy FileBrowser installation.${CL}"
|
|
|
|
|
|
echo -n "Uninstall legacy FileBrowser and continue with Quantum install? (y/n): "
|
|
|
|
|
|
read -r remove_legacy
|
|
|
|
|
|
if [[ "${remove_legacy,,}" =~ ^(y|yes)$ ]]; then
|
|
|
|
|
|
msg_info "Uninstalling legacy FileBrowser"
|
|
|
|
|
|
if [[ -f "$LEGACY_SERVICE_DEB" ]]; then
|
|
|
|
|
|
systemctl disable --now filebrowser.service &>/dev/null
|
|
|
|
|
|
rm -f "$LEGACY_SERVICE_DEB"
|
|
|
|
|
|
elif [[ -f "$LEGACY_SERVICE_ALP" ]]; then
|
|
|
|
|
|
rc-service filebrowser stop &>/dev/null
|
|
|
|
|
|
rc-update del filebrowser &>/dev/null
|
|
|
|
|
|
rm -f "$LEGACY_SERVICE_ALP"
|
|
|
|
|
|
fi
|
|
|
|
|
|
rm -f "$LEGACY_BIN" "$LEGACY_DB"
|
|
|
|
|
|
msg_ok "Legacy FileBrowser removed"
|
|
|
|
|
|
else
|
|
|
|
|
|
echo -e "${YW}❌ Installation aborted by user.${CL}"
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
fi
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
2025-10-20 09:35:38 +02:00
|
|
|
|
# Existing installation
|
|
|
|
|
|
if [[ -f "$INSTALL_PATH" ]]; then
|
|
|
|
|
|
echo -e "${YW}⚠️ ${APP} is already installed.${CL}"
|
|
|
|
|
|
echo -n "Uninstall ${APP}? (y/N): "
|
|
|
|
|
|
read -r uninstall_prompt
|
|
|
|
|
|
if [[ "${uninstall_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
|
|
|
|
msg_info "Uninstalling ${APP}"
|
|
|
|
|
|
if [[ "$OS" == "Debian" ]]; then
|
|
|
|
|
|
systemctl disable --now filebrowser.service &>/dev/null
|
|
|
|
|
|
rm -f "$SERVICE_PATH"
|
|
|
|
|
|
else
|
|
|
|
|
|
rc-service filebrowser stop &>/dev/null
|
|
|
|
|
|
rc-update del filebrowser &>/dev/null
|
|
|
|
|
|
rm -f "$SERVICE_PATH"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
fi
|
2025-10-20 09:35:38 +02:00
|
|
|
|
rm -f "$INSTALL_PATH" "$CONFIG_PATH"
|
|
|
|
|
|
msg_ok "${APP} has been uninstalled."
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "Update ${APP}? (y/N): "
|
|
|
|
|
|
read -r update_prompt
|
2025-06-18 18:17:40 +02:00
|
|
|
|
if [[ "${update_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
|
|
|
|
msg_info "Updating ${APP}"
|
2026-02-09 14:11:51 +01:00
|
|
|
|
if ! command -v curl &>/dev/null; then $PKG_MANAGER curl &>/dev/null; fi
|
2025-11-13 11:23:48 +01:00
|
|
|
|
curl -fsSL https://github.com/gtsteffaniak/filebrowser/releases/latest/download/linux-amd64-filebrowser -o "$TMP_BIN"
|
|
|
|
|
|
chmod +x "$TMP_BIN"
|
|
|
|
|
|
mv -f "$TMP_BIN" /usr/local/bin/filebrowser
|
2025-06-18 18:17:40 +02:00
|
|
|
|
msg_ok "Updated ${APP}"
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
else
|
|
|
|
|
|
echo -e "${YW}⚠️ Update skipped. Exiting.${CL}"
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
fi
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo -e "${YW}⚠️ ${APP} is not installed.${CL}"
|
|
|
|
|
|
echo -n "Enter port number (Default: ${DEFAULT_PORT}): "
|
|
|
|
|
|
read -r PORT
|
|
|
|
|
|
PORT=${PORT:-$DEFAULT_PORT}
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "Install ${APP}? (y/n): "
|
|
|
|
|
|
read -r install_prompt
|
2025-10-20 09:35:38 +02:00
|
|
|
|
if ! [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
|
|
|
|
echo -e "${YW}⚠️ Installation skipped. Exiting.${CL}"
|
|
|
|
|
|
exit 0
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Installing ${APP} on ${OS}"
|
|
|
|
|
|
$PKG_MANAGER curl ffmpeg &>/dev/null
|
2025-11-13 11:23:48 +01:00
|
|
|
|
curl -fsSL https://github.com/gtsteffaniak/filebrowser/releases/latest/download/linux-amd64-filebrowser -o "$TMP_BIN"
|
|
|
|
|
|
chmod +x "$TMP_BIN"
|
|
|
|
|
|
mv -f "$TMP_BIN" /usr/local/bin/filebrowser
|
2025-10-20 09:35:38 +02:00
|
|
|
|
msg_ok "Installed ${APP}"
|
|
|
|
|
|
|
|
|
|
|
|
msg_info "Preparing configuration directory"
|
|
|
|
|
|
mkdir -p /usr/local/community-scripts
|
|
|
|
|
|
chown root:root /usr/local/community-scripts
|
|
|
|
|
|
chmod 755 /usr/local/community-scripts
|
|
|
|
|
|
msg_ok "Directory prepared"
|
|
|
|
|
|
|
|
|
|
|
|
echo -n "Use No Authentication? (y/N): "
|
|
|
|
|
|
read -r noauth_prompt
|
|
|
|
|
|
|
|
|
|
|
|
# === YAML CONFIG GENERATION ===
|
|
|
|
|
|
if [[ "${noauth_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
|
|
|
|
cat <<EOF >"$CONFIG_PATH"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
server:
|
|
|
|
|
|
port: $PORT
|
|
|
|
|
|
sources:
|
2025-10-20 09:35:38 +02:00
|
|
|
|
- path: "$SRC_DIR"
|
|
|
|
|
|
name: "RootFS"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
config:
|
2025-10-20 09:35:38 +02:00
|
|
|
|
denyByDefault: false
|
2025-06-18 18:17:40 +02:00
|
|
|
|
disableIndexing: false
|
|
|
|
|
|
indexingIntervalMinutes: 240
|
2025-10-20 09:35:38 +02:00
|
|
|
|
conditionals:
|
|
|
|
|
|
rules:
|
|
|
|
|
|
- neverWatchPath: "/proc"
|
|
|
|
|
|
- neverWatchPath: "/sys"
|
|
|
|
|
|
- neverWatchPath: "/dev"
|
|
|
|
|
|
- neverWatchPath: "/run"
|
|
|
|
|
|
- neverWatchPath: "/tmp"
|
|
|
|
|
|
- neverWatchPath: "/lost+found"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
auth:
|
|
|
|
|
|
methods:
|
|
|
|
|
|
noauth: true
|
|
|
|
|
|
EOF
|
2025-10-20 09:35:38 +02:00
|
|
|
|
msg_ok "Configured with no authentication"
|
|
|
|
|
|
else
|
|
|
|
|
|
cat <<EOF >"$CONFIG_PATH"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
server:
|
|
|
|
|
|
port: $PORT
|
|
|
|
|
|
sources:
|
|
|
|
|
|
- path: "$SRC_DIR"
|
2025-10-20 09:35:38 +02:00
|
|
|
|
name: "RootFS"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
config:
|
2025-10-20 09:35:38 +02:00
|
|
|
|
denyByDefault: false
|
2025-06-18 18:17:40 +02:00
|
|
|
|
disableIndexing: false
|
|
|
|
|
|
indexingIntervalMinutes: 240
|
2025-10-20 09:35:38 +02:00
|
|
|
|
conditionals:
|
|
|
|
|
|
rules:
|
|
|
|
|
|
- neverWatchPath: "/proc"
|
|
|
|
|
|
- neverWatchPath: "/sys"
|
|
|
|
|
|
- neverWatchPath: "/dev"
|
|
|
|
|
|
- neverWatchPath: "/run"
|
|
|
|
|
|
- neverWatchPath: "/tmp"
|
|
|
|
|
|
- neverWatchPath: "/lost+found"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
auth:
|
|
|
|
|
|
adminUsername: admin
|
|
|
|
|
|
adminPassword: helper-scripts.com
|
|
|
|
|
|
EOF
|
2025-10-20 09:35:38 +02:00
|
|
|
|
msg_ok "Configured with default admin (admin / helper-scripts.com)"
|
|
|
|
|
|
fi
|
2025-06-18 18:17:40 +02:00
|
|
|
|
|
2025-10-20 09:35:38 +02:00
|
|
|
|
msg_info "Creating service"
|
|
|
|
|
|
if [[ "$OS" == "Debian" ]]; then
|
|
|
|
|
|
cat <<EOF >"$SERVICE_PATH"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
[Unit]
|
|
|
|
|
|
Description=FileBrowser Quantum
|
|
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
|
User=root
|
|
|
|
|
|
WorkingDirectory=/usr/local/community-scripts
|
|
|
|
|
|
ExecStart=/usr/local/bin/filebrowser -c $CONFIG_PATH
|
|
|
|
|
|
Restart=always
|
|
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
|
EOF
|
2025-10-20 09:35:38 +02:00
|
|
|
|
systemctl enable --now filebrowser &>/dev/null
|
|
|
|
|
|
else
|
|
|
|
|
|
cat <<EOF >"$SERVICE_PATH"
|
2025-06-18 18:17:40 +02:00
|
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
|
|
|
|
command="/usr/local/bin/filebrowser"
|
|
|
|
|
|
command_args="-c $CONFIG_PATH"
|
|
|
|
|
|
command_background=true
|
|
|
|
|
|
directory="/usr/local/community-scripts"
|
|
|
|
|
|
pidfile="/usr/local/community-scripts/pidfile"
|
|
|
|
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
|
|
need net
|
|
|
|
|
|
}
|
|
|
|
|
|
EOF
|
2025-10-20 09:35:38 +02:00
|
|
|
|
chmod +x "$SERVICE_PATH"
|
|
|
|
|
|
rc-update add filebrowser default &>/dev/null
|
|
|
|
|
|
rc-service filebrowser start &>/dev/null
|
2025-06-18 18:17:40 +02:00
|
|
|
|
fi
|
2025-10-20 09:35:38 +02:00
|
|
|
|
|
|
|
|
|
|
msg_ok "Service created successfully"
|
|
|
|
|
|
echo -e "${CM} ${GN}${APP} is reachable at: ${BL}http://$IP:$PORT${CL}"
|