mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-02 17:05:55 +01:00
* Standardize exit codes and add mappings Replace generic exit 1 usages with specific numeric exit codes and add corresponding explanations to the error lookup. This commit updates multiple misc/* scripts to return distinct codes for validation, Proxmox/LXC, networking, download and curl errors (e.g. 103-123, 64, 107-120, 206, 0 for explicit user cancels). It also updates curl error handling to propagate the original curl exit code and adds new entries in explain_exit_code and the error handler to improve diagnostics. * Set exit code 115 for update_os errors Change exit status from 6 to 115 in misc/alpine-install.func's update_os() error handlers when failing to download tools.func or when the expected functions are missing. This gives a distinct exit code for these specific failure cases. * Add tools/addon exit codes and use them Introduce exit codes 232-238 for Tools & Addon scripts in misc/api.func and misc/error_handler.func. Update addon scripts (tools/addon/adguardhome-sync.sh, tools/addon/copyparty.sh, tools/addon/cronmaster.sh) to return specific codes instead of generic exit 1: 238 for unsupported OS and 233 when the application is not installed/upgrade prerequisites are missing. This makes failures more descriptive and aligns scripts with the central error explanations. * Standardize exit codes in exporter addons Unify exit codes across exporter addon scripts: return 238 for unsupported OS detections and 233 when an update is requested but the exporter is not installed. Applied to nextcloud-exporter.sh, pihole-exporter.sh, prometheus-paperless-ngx-exporter.sh, and qbittorrent-exporter.sh to make failure modes distinguishable for callers/automation. * Use specific exit codes in addon scripts Replace generic exit 1 with distinct exit codes across multiple addon scripts to enable finer-grained error handling in automation. Exit codes introduced: 10 for Docker/Compose missing or user-declined Docker install, 233 for "nothing to update" cases, and 238 for unsupported OS cases. Affected files: tools/addon/arcane.sh, coolify.sh, dockge.sh, dokploy.sh, filebrowser-quantum.sh, filebrowser.sh, immich-public-proxy.sh, jellystat.sh, runtipi.sh. * Use specific exit codes in addon scripts Replace generic exit 1 with specific exit codes across multiple addon scripts to improve error signaling and handling. Files updated: tools/addon/add-netbird-lxc.sh (exit 238 on unsupported distro), tools/addon/add-tailscale-lxc.sh (treat user cancel as exit 0), tools/addon/glances.sh (exit 233 when not installed), tools/addon/komodo.sh (distinct exits for missing compose, legacy DB, backup/download failures, docker checks), tools/addon/netdata.sh (distinct exits for unsupported PVE versions, OS/codename detection, repo lookups), and tools/addon/phpmyadmin.sh (distinct exits for unsupported OS, network/download issues, package install/start failures, and invalid input). These changes make failures easier to identify and automate recovery or reporting. * Use specific exit codes in PVE scripts Replace generic exit 1 with distinct exit codes across tools/pve scripts to provide clearer failure signals for callers. post-pve-install.sh now returns 105 for unsupported Proxmox versions; pve-privilege-converter.sh uses 104 for non-root, 234 when no containers, and 235 for backup/conversion failures; update-apps.sh maps backup failures to 235, missing containers/selections to 234 (and UI cancellations to 0), missing backup storage to 119, and returns the actual container update exit code on failure. These changes improve diagnostics and allow external tooling to react to specific error conditions. * Standardize exit codes and behaviors Adjust exit codes and abort handling across multiple PVE helper scripts to provide clearer outcomes for automation and interactive flows. Changes include: - container-restore-from-backup.sh, core-restore-from-backup.sh: return 235 when no backups found (was 1). - fstrim.sh: treat user cancellation of non-ext4 warning as non-error (exit 0 instead of 1). - kernel-clean.sh: treat no selection or user abort as non-error (exit 0 instead of 1). - lxc-delete.sh: return 234 when no containers are present; treat no selection as non-error (exit 0). - nic-offloading-fix.sh: use specific non-zero codes for root check and tool install failures (exit 104, 237) and 236 when no matching interfaces (was 1). - pbs_microcode.sh, post-pmg-install.sh, post-pbs-install.sh: use distinct exit codes (232 and 105) for detected VM/PVE/unsupported distro conditions instead of generic 1. These modifications make scripts return distinct codes for different failure modes and ensure user-initiated aborts or benign conditions exit with 0 where appropriate. * Use exit 105 for unsupported PVE versions Standardize error handling by replacing generic exit 1 with exit 105 in pve_check() across multiple VM template scripts to indicate unsupported Proxmox VE versions. Also add API exit code 226 message for "Proxmox: VM disk import or post-creation setup failed" in misc/api.func. Affected files include misc/api.func and various vm/*-vm.sh scripts. * Use specific exit codes in VM scripts Replace generic exit 1 with distinct exit codes across vm/*.sh to make failures more actionable for callers. Changes include: use 226 for missing imported-disk references, 237 for pv installation failures, 115 for download/extract/ISO-related failures, 214 for insufficient disk space during FreeBSD decompression, and 119 for missing storage detection. Updated scripts: archlinux-vm.sh, docker-vm.sh, haos-vm.sh, openwrt-vm.sh, opnsense-vm.sh, truenas-vm.sh, umbrel-os-vm.sh.
217 lines
6.9 KiB
Bash
217 lines
6.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: CrazyWolf13
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/xperimental/nextcloud-exporter
|
|
|
|
if ! command -v curl &>/dev/null; then
|
|
printf "\r\e[2K%b" '\033[93m Setup Source \033[m' >&2
|
|
apt-get update >/dev/null 2>&1
|
|
apt-get install -y curl >/dev/null 2>&1
|
|
fi
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/core.func)
|
|
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/error_handler.func)
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func) 2>/dev/null || true
|
|
|
|
# Enable error handling
|
|
set -Eeuo pipefail
|
|
trap 'error_handler' ERR
|
|
load_functions
|
|
init_tool_telemetry "" "addon"
|
|
|
|
# ==============================================================================
|
|
# CONFIGURATION
|
|
# ==============================================================================
|
|
VERBOSE=${var_verbose:-no}
|
|
APP="nextcloud-exporter"
|
|
APP_TYPE="tools"
|
|
BINARY_PATH="/usr/bin/nextcloud-exporter"
|
|
CONFIG_PATH="/etc/nextcloud-exporter.env"
|
|
SERVICE_PATH="/etc/systemd/system/nextcloud-exporter.service"
|
|
|
|
# ==============================================================================
|
|
# OS DETECTION
|
|
# ==============================================================================
|
|
if ! grep -qE 'ID=debian|ID=ubuntu' /etc/os-release 2>/dev/null; then
|
|
echo -e "${CROSS} Unsupported OS detected. This script only supports Debian and Ubuntu."
|
|
exit 238
|
|
fi
|
|
|
|
# ==============================================================================
|
|
# UNINSTALL
|
|
# ==============================================================================
|
|
function uninstall() {
|
|
msg_info "Uninstalling Nextcloud-Exporter"
|
|
systemctl disable -q --now nextcloud-exporter
|
|
rm -f "$SERVICE_PATH"
|
|
|
|
if dpkg -l | grep -q nextcloud-exporter; then
|
|
$STD apt-get remove -y nextcloud-exporter || $STD dpkg -r nextcloud-exporter
|
|
fi
|
|
|
|
rm -f "$CONFIG_PATH"
|
|
rm -f "/usr/local/bin/update_nextcloud-exporter"
|
|
rm -f "$HOME/.nextcloud-exporter"
|
|
msg_ok "Nextcloud-Exporter has been uninstalled"
|
|
}
|
|
|
|
# ==============================================================================
|
|
# UPDATE
|
|
# ==============================================================================
|
|
function update() {
|
|
if check_for_gh_release "nextcloud-exporter" "xperimental/nextcloud-exporter"; then
|
|
msg_info "Stopping service"
|
|
systemctl stop nextcloud-exporter
|
|
msg_ok "Stopped service"
|
|
|
|
fetch_and_deploy_gh_release "nextcloud-exporter" "xperimental/nextcloud-exporter" "binary" "latest"
|
|
|
|
msg_info "Starting service"
|
|
systemctl start nextcloud-exporter
|
|
msg_ok "Started service"
|
|
msg_ok "Updated successfully!"
|
|
exit
|
|
fi
|
|
}
|
|
|
|
# ==============================================================================
|
|
# INSTALL
|
|
# ==============================================================================
|
|
function install() {
|
|
read -erp "Enter URL of Nextcloud, example: (http://127.0.0.1:8080): " NEXTCLOUD_SERVER
|
|
read -rsp "Enter Nextcloud auth token (press Enter to use username/password instead): " NEXTCLOUD_AUTH_TOKEN
|
|
printf "\n"
|
|
|
|
if [[ -z "$NEXTCLOUD_AUTH_TOKEN" ]]; then
|
|
read -erp "Enter Nextcloud username: " NEXTCLOUD_USERNAME
|
|
read -rsp "Enter Nextcloud password: " NEXTCLOUD_PASSWORD
|
|
printf "\n"
|
|
fi
|
|
|
|
read -erp "Query additional info for apps? [Y/n]: " QUERY_APPS
|
|
if [[ "${QUERY_APPS,,}" =~ ^(n|no)$ ]]; then
|
|
NEXTCLOUD_INFO_APPS="false"
|
|
fi
|
|
|
|
read -erp "Query update information? [Y/n]: " QUERY_UPDATES
|
|
if [[ "${QUERY_UPDATES,,}" =~ ^(n|no)$ ]]; then
|
|
NEXTCLOUD_INFO_UPDATE="false"
|
|
fi
|
|
|
|
read -erp "Do you want to skip TLS-Verification (if using a self-signed Certificate on Nextcloud) [y/N]: " SKIP_TLS
|
|
if [[ "${SKIP_TLS,,}" =~ ^(y|yes)$ ]]; then
|
|
NEXTCLOUD_TLS_SKIP_VERIFY="true"
|
|
fi
|
|
|
|
fetch_and_deploy_gh_release "nextcloud-exporter" "xperimental/nextcloud-exporter" "binary" "latest"
|
|
|
|
msg_info "Creating configuration"
|
|
cat <<EOF >"$CONFIG_PATH"
|
|
# https://github.com/xperimental/nextcloud-exporter
|
|
NEXTCLOUD_SERVER="${NEXTCLOUD_SERVER}"
|
|
NEXTCLOUD_AUTH_TOKEN="${NEXTCLOUD_AUTH_TOKEN:-}"
|
|
NEXTCLOUD_USERNAME="${NEXTCLOUD_USERNAME:-}"
|
|
NEXTCLOUD_PASSWORD="${NEXTCLOUD_PASSWORD:-}"
|
|
NEXTCLOUD_INFO_UPDATE=${NEXTCLOUD_INFO_UPDATE:-"true"}
|
|
NEXTCLOUD_INFO_APPS=${NEXTCLOUD_INFO_APPS:-"true"}
|
|
NEXTCLOUD_TLS_SKIP_VERIFY=${NEXTCLOUD_TLS_SKIP_VERIFY:-"false"}
|
|
NEXTCLOUD_LISTEN_ADDRESS=":9205"
|
|
EOF
|
|
msg_ok "Created configuration"
|
|
|
|
msg_info "Creating service"
|
|
cat <<EOF >"$SERVICE_PATH"
|
|
[Unit]
|
|
Description=nextcloud-exporter
|
|
After=network.target
|
|
|
|
[Service]
|
|
User=root
|
|
EnvironmentFile=$CONFIG_PATH
|
|
ExecStart=$BINARY_PATH
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl daemon-reload
|
|
systemctl enable -q --now nextcloud-exporter
|
|
msg_ok "Created and started service"
|
|
|
|
# Create update script
|
|
msg_info "Creating update script"
|
|
ensure_usr_local_bin_persist
|
|
cat <<'UPDATEEOF' >/usr/local/bin/update_nextcloud-exporter
|
|
#!/usr/bin/env bash
|
|
# nextcloud-exporter Update Script
|
|
type=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/nextcloud-exporter.sh)"
|
|
UPDATEEOF
|
|
chmod +x /usr/local/bin/update_nextcloud-exporter
|
|
msg_ok "Created update script (/usr/local/bin/update_nextcloud-exporter)"
|
|
|
|
echo ""
|
|
msg_ok "Nextcloud-Exporter installed successfully"
|
|
msg_ok "Metrics: ${BL}http://${LOCAL_IP}:9205/metrics${CL}"
|
|
msg_ok "Config: ${BL}${CONFIG_PATH}${CL}"
|
|
}
|
|
|
|
# ==============================================================================
|
|
# MAIN
|
|
# ==============================================================================
|
|
header_info
|
|
ensure_usr_local_bin_persist
|
|
get_lxc_ip
|
|
|
|
# Handle type=update (called from update script)
|
|
if [[ "${type:-}" == "update" ]]; then
|
|
if [[ -f "$BINARY_PATH" ]]; then
|
|
update
|
|
else
|
|
msg_error "Nextcloud-Exporter is not installed. Nothing to update."
|
|
exit 233
|
|
fi
|
|
exit 0
|
|
fi
|
|
|
|
# Check if already installed
|
|
if [[ -f "$BINARY_PATH" ]]; then
|
|
msg_warn "Nextcloud-Exporter is already installed."
|
|
echo ""
|
|
|
|
echo -n "${TAB}Uninstall Nextcloud-Exporter? (y/N): "
|
|
read -r uninstall_prompt
|
|
if [[ "${uninstall_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
uninstall
|
|
exit 0
|
|
fi
|
|
|
|
echo -n "${TAB}Update Nextcloud-Exporter? (y/N): "
|
|
read -r update_prompt
|
|
if [[ "${update_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
update
|
|
exit 0
|
|
fi
|
|
|
|
msg_warn "No action selected. Exiting."
|
|
exit 0
|
|
fi
|
|
|
|
# Fresh installation
|
|
msg_warn "Nextcloud-Exporter is not installed."
|
|
echo ""
|
|
echo -e "${TAB}${INFO} This will install:"
|
|
echo -e "${TAB} - Nextcloud Exporter (binary)"
|
|
echo -e "${TAB} - Systemd service"
|
|
echo ""
|
|
|
|
echo -n "${TAB}Install Nextcloud-Exporter? (y/N): "
|
|
read -r install_prompt
|
|
if [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
install
|
|
else
|
|
msg_warn "Installation cancelled. Exiting."
|
|
exit 0
|
|
fi
|