mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-29 01:02:54 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c96977c589 | |||
| 1481ed0cb2 |
+2
-2
@@ -45,7 +45,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
|
|
||||||
const labels = pr.labels.map((label) => label.name);
|
const labels = pr.labels.map((label) => label.name);
|
||||||
const skipLabels = ["automated pr", "keep-open"];
|
const skipLabels = ["automated pr", "keep open"];
|
||||||
|
|
||||||
if (skipLabels.some((label) => labels.includes(label))) {
|
if (skipLabels.some((label) => labels.includes(label))) {
|
||||||
core.info(`PR #${prNumber} has a skip label (${labels.join(", ")}) — skipping template validation.`);
|
core.info(`PR #${prNumber} has a skip label (${labels.join(", ")}) — skipping template validation.`);
|
||||||
@@ -136,7 +136,7 @@ jobs:
|
|||||||
``,
|
``,
|
||||||
`> Use the template sections, fill in the description, check all prerequisite boxes, and select at least one type of change.`,
|
`> Use the template sections, fill in the description, check all prerequisite boxes, and select at least one type of change.`,
|
||||||
``,
|
``,
|
||||||
`Maintainers can add the \`keep-open\` label to exempt a PR from this check.`,
|
`Maintainers can add the \`keep open\` label to exempt a PR from this check.`,
|
||||||
``,
|
``,
|
||||||
`Thank you for contributing! 🙏`,
|
`Thank you for contributing! 🙏`,
|
||||||
].join("\n");
|
].join("\n");
|
||||||
|
|||||||
+1
-7
@@ -514,19 +514,13 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
- fix Node.js version drift [@asylumexp](https://github.com/asylumexp) ([#16111](https://github.com/community-scripts/ProxmoxVE/pull/16111))
|
|
||||||
- UmlautAdaptarr: use the Debian 13 Microsoft repo with its 2025 signing key [@angusmaul](https://github.com/angusmaul) ([#16077](https://github.com/community-scripts/ProxmoxVE/pull/16077))
|
- UmlautAdaptarr: use the Debian 13 Microsoft repo with its 2025 signing key [@angusmaul](https://github.com/angusmaul) ([#16077](https://github.com/community-scripts/ProxmoxVE/pull/16077))
|
||||||
- fix(bazarr): store data in /var/lib/bazarr instead of inside /opt/bazarr [@angusmaul](https://github.com/angusmaul) ([#16098](https://github.com/community-scripts/ProxmoxVE/pull/16098))
|
- fix(bazarr): store data in /var/lib/bazarr instead of inside /opt/bazarr [@angusmaul](https://github.com/angusmaul) ([#16098](https://github.com/community-scripts/ProxmoxVE/pull/16098))
|
||||||
- Cloudflare-DDNS: store API token in a 600 env file and build the binary at install time [@angusmaul](https://github.com/angusmaul) ([#16100](https://github.com/community-scripts/ProxmoxVE/pull/16100))
|
- Cloudflare-DDNS: store API token in a 600 env file and build the binary at install time [@angusmaul](https://github.com/angusmaul) ([#16100](https://github.com/community-scripts/ProxmoxVE/pull/16100))
|
||||||
|
|
||||||
### 🧰 Tools
|
|
||||||
|
|
||||||
- actual-budget-prometheus-exporter ([#16109](https://github.com/community-scripts/ProxmoxVE/pull/16109))
|
|
||||||
|
|
||||||
### 📂 Github
|
### 📂 Github
|
||||||
|
|
||||||
- fix keep-open for close invalid pr [@asylumexp](https://github.com/asylumexp) ([#16105](https://github.com/community-scripts/ProxmoxVE/pull/16105))
|
- Bump GitHub Actions across workflows [@MickLesk](https://github.com/MickLesk) ([#16091](https://github.com/community-scripts/ProxmoxVE/pull/16091))
|
||||||
- Bump GitHub Actions across workflows [@MickLesk](https://github.com/MickLesk) ([#16091](https://github.com/community-scripts/ProxmoxVE/pull/16091))
|
|
||||||
|
|
||||||
## 2026-07-27
|
## 2026-07-27
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -5337,7 +5337,7 @@ EOF
|
|||||||
|
|
||||||
local response=""
|
local response=""
|
||||||
local read_rc
|
local read_rc
|
||||||
read -t 60 -r response </dev/tty
|
read -t 60 -r response
|
||||||
read_rc=$?
|
read_rc=$?
|
||||||
if [[ $read_rc -eq 0 ]]; then
|
if [[ $read_rc -eq 0 ]]; then
|
||||||
case "${response:-1}" in
|
case "${response:-1}" in
|
||||||
|
|||||||
@@ -1,224 +0,0 @@
|
|||||||
#!/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/sakowicz/actual-budget-prometheus-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
|
|
||||||
declare -f init_tool_telemetry &>/dev/null && init_tool_telemetry "actual-budget-prometheus-exporter" "addon"
|
|
||||||
|
|
||||||
# Enable error handling
|
|
||||||
set -Eeuo pipefail
|
|
||||||
trap 'error_handler' ERR
|
|
||||||
load_functions
|
|
||||||
|
|
||||||
# ==============================================================================
|
|
||||||
# CONFIGURATION
|
|
||||||
# ==============================================================================
|
|
||||||
VERBOSE=${var_verbose:-no}
|
|
||||||
APP="actual-budget-prometheus-exporter"
|
|
||||||
APP_TYPE="tools"
|
|
||||||
INSTALL_PATH="/opt/actual-budget-prometheus-exporter"
|
|
||||||
CONFIG_PATH="/opt/actual-budget-prometheus-exporter.env"
|
|
||||||
SERVICE_PATH="/etc/systemd/system/actual-budget-prometheus-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 Actual-Budget-Prometheus-Exporter"
|
|
||||||
systemctl disable -q --now actual-budget-prometheus-exporter
|
|
||||||
rm -f "$SERVICE_PATH"
|
|
||||||
rm -rf "$INSTALL_PATH"
|
|
||||||
rm -f "$CONFIG_PATH"
|
|
||||||
rm -f "/usr/local/bin/update_actual-budget-prometheus-exporter"
|
|
||||||
rm -f "$HOME/.actual-budget-prometheus-exporter"
|
|
||||||
msg_ok "Actual-Budget-Prometheus-Exporter has been uninstalled"
|
|
||||||
}
|
|
||||||
|
|
||||||
# ==============================================================================
|
|
||||||
# UPDATE
|
|
||||||
# ==============================================================================
|
|
||||||
function update() {
|
|
||||||
if check_for_gh_release "actual-budget-prometheus-exporter" "sakowicz/actual-budget-prometheus-exporter"; then
|
|
||||||
msg_info "Stopping service"
|
|
||||||
systemctl stop actual-budget-prometheus-exporter
|
|
||||||
msg_ok "Stopped service"
|
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "actual-budget-prometheus-exporter" "sakowicz/actual-budget-prometheus-exporter" "tarball" "latest"
|
|
||||||
NODE_VERSION="22" setup_nodejs
|
|
||||||
|
|
||||||
msg_info "Building Actual-Budget-Prometheus-Exporter"
|
|
||||||
cd "$INSTALL_PATH"
|
|
||||||
$STD npm ci
|
|
||||||
$STD npm run build
|
|
||||||
msg_ok "Built Actual-Budget-Prometheus-Exporter"
|
|
||||||
|
|
||||||
msg_info "Starting service"
|
|
||||||
systemctl start actual-budget-prometheus-exporter
|
|
||||||
msg_ok "Started service"
|
|
||||||
msg_ok "Updated successfully!"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# ==============================================================================
|
|
||||||
# INSTALL
|
|
||||||
# ==============================================================================
|
|
||||||
function install() {
|
|
||||||
read -erp "Enter URL of Actual Budget server, example: (http://127.0.0.1:5006): " ACTUAL_SERVER_URL
|
|
||||||
read -rsp "Enter Actual Budget server password: " ACTUAL_PASSWORD
|
|
||||||
printf "\n"
|
|
||||||
echo -e "${TAB}${INFO} Find the Sync ID in Actual under Settings > Advanced settings > Sync ID"
|
|
||||||
read -erp "Enter Budget Sync ID: " ACTUAL_BUDGET_ID_1
|
|
||||||
read -rsp "Enter E2E encryption password (leave empty if end-to-end encryption is disabled): " ACTUAL_E2E_PASSWORD_1
|
|
||||||
printf "\n"
|
|
||||||
read -erp "Enter metrics port (default: 3001): " PORT_INPUT
|
|
||||||
PORT="${PORT_INPUT:-3001}"
|
|
||||||
|
|
||||||
# build-essential and python3 are required to compile better-sqlite3
|
|
||||||
# (native dependency of @actual-app/api) when no prebuilt binary is available.
|
|
||||||
msg_info "Installing Dependencies"
|
|
||||||
$STD apt install -y build-essential python3
|
|
||||||
msg_ok "Installed Dependencies"
|
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "actual-budget-prometheus-exporter" "sakowicz/actual-budget-prometheus-exporter" "tarball" "latest"
|
|
||||||
NODE_VERSION="22" setup_nodejs
|
|
||||||
|
|
||||||
msg_info "Building Actual-Budget-Prometheus-Exporter"
|
|
||||||
cd "$INSTALL_PATH"
|
|
||||||
$STD npm ci
|
|
||||||
$STD npm run build
|
|
||||||
msg_ok "Built Actual-Budget-Prometheus-Exporter"
|
|
||||||
|
|
||||||
msg_info "Creating configuration"
|
|
||||||
cat <<EOF >"$CONFIG_PATH"
|
|
||||||
# https://github.com/sakowicz/actual-budget-prometheus-exporter
|
|
||||||
ACTUAL_SERVER_URL="${ACTUAL_SERVER_URL}"
|
|
||||||
ACTUAL_PASSWORD="${ACTUAL_PASSWORD}"
|
|
||||||
ACTUAL_BUDGET_ID_1="${ACTUAL_BUDGET_ID_1}"
|
|
||||||
ACTUAL_E2E_PASSWORD_1="${ACTUAL_E2E_PASSWORD_1}"
|
|
||||||
PORT="${PORT}"
|
|
||||||
# Optional: friendly label for the budget shown in the exported metrics
|
|
||||||
# ACTUAL_BUDGET_NAME_1=""
|
|
||||||
# Optional: monitor additional budgets by incrementing the numeric suffix
|
|
||||||
# ACTUAL_BUDGET_ID_2=""
|
|
||||||
# ACTUAL_E2E_PASSWORD_2=""
|
|
||||||
# ACTUAL_BUDGET_NAME_2=""
|
|
||||||
# Optional: set to 0 to accept a self-signed TLS certificate on the Actual server
|
|
||||||
# NODE_TLS_REJECT_UNAUTHORIZED="0"
|
|
||||||
EOF
|
|
||||||
msg_ok "Created configuration"
|
|
||||||
|
|
||||||
msg_info "Creating service"
|
|
||||||
cat <<EOF >"$SERVICE_PATH"
|
|
||||||
[Unit]
|
|
||||||
Description=Actual Budget Prometheus Exporter
|
|
||||||
Wants=network-online.target
|
|
||||||
After=network-online.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
User=root
|
|
||||||
WorkingDirectory=$INSTALL_PATH
|
|
||||||
EnvironmentFile=$CONFIG_PATH
|
|
||||||
ExecStart=/usr/bin/node $INSTALL_PATH/dist/app.js
|
|
||||||
Restart=always
|
|
||||||
RestartSec=10
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
EOF
|
|
||||||
systemctl enable -q --now actual-budget-prometheus-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_actual-budget-prometheus-exporter
|
|
||||||
#!/usr/bin/env bash
|
|
||||||
# actual-budget-prometheus-exporter Update Script
|
|
||||||
type=update bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/addon/actual-budget-prometheus-exporter.sh)"
|
|
||||||
UPDATEEOF
|
|
||||||
chmod +x /usr/local/bin/update_actual-budget-prometheus-exporter
|
|
||||||
msg_ok "Created update script (/usr/local/bin/update_actual-budget-prometheus-exporter)"
|
|
||||||
|
|
||||||
echo ""
|
|
||||||
msg_ok "Actual-Budget-Prometheus-Exporter installed successfully"
|
|
||||||
msg_ok "Metrics: ${BL}http://${LOCAL_IP}:${PORT}/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 [[ -d "$INSTALL_PATH" && -f "$INSTALL_PATH/dist/app.js" ]]; then
|
|
||||||
update
|
|
||||||
else
|
|
||||||
msg_error "Actual-Budget-Prometheus-Exporter is not installed. Nothing to update."
|
|
||||||
exit 233
|
|
||||||
fi
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if already installed
|
|
||||||
if [[ -d "$INSTALL_PATH" && -f "$INSTALL_PATH/dist/app.js" ]]; then
|
|
||||||
msg_warn "Actual-Budget-Prometheus-Exporter is already installed."
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
echo -n "${TAB}Uninstall Actual-Budget-Prometheus-Exporter? (y/N): "
|
|
||||||
read -r uninstall_prompt
|
|
||||||
if [[ "${uninstall_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
||||||
uninstall
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo -n "${TAB}Update Actual-Budget-Prometheus-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 "Actual-Budget-Prometheus-Exporter is not installed."
|
|
||||||
echo ""
|
|
||||||
echo -e "${TAB}${INFO} This will install:"
|
|
||||||
echo -e "${TAB} - Actual Budget Prometheus Exporter (Node.js source build)"
|
|
||||||
echo -e "${TAB} - Systemd service"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
echo -n "${TAB}Install Actual-Budget-Prometheus-Exporter? (y/N): "
|
|
||||||
read -r install_prompt
|
|
||||||
if [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then
|
|
||||||
install
|
|
||||||
else
|
|
||||||
msg_warn "Installation cancelled. Exiting."
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
__ __ __ __ __ __ __ __
|
|
||||||
____ ______/ /___ ______ _/ / / /_ __ ______/ /___ ____ / /_ ____ _________ ____ ___ ___ / /_/ /_ ___ __ _______ ___ _ ______ ____ _____/ /____ _____
|
|
||||||
/ __ `/ ___/ __/ / / / __ `/ /_____/ __ \/ / / / __ / __ `/ _ \/ __/_____/ __ \/ ___/ __ \/ __ `__ \/ _ \/ __/ __ \/ _ \/ / / / ___/_____/ _ \| |/_/ __ \/ __ \/ ___/ __/ _ \/ ___/
|
|
||||||
/ /_/ / /__/ /_/ /_/ / /_/ / /_____/ /_/ / /_/ / /_/ / /_/ / __/ /_/_____/ /_/ / / / /_/ / / / / / / __/ /_/ / / / __/ /_/ (__ )_____/ __/> </ /_/ / /_/ / / / /_/ __/ /
|
|
||||||
\__,_/\___/\__/\__,_/\__,_/_/ /_.___/\__,_/\__,_/\__, /\___/\__/ / .___/_/ \____/_/ /_/ /_/\___/\__/_/ /_/\___/\__,_/____/ \___/_/|_/ .___/\____/_/ \__/\___/_/
|
|
||||||
/____/ /_/ /_/
|
|
||||||
Reference in New Issue
Block a user