mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-08-25 22:05:42 +02:00
b99e7a3774
Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com>
73 lines
2.5 KiB
Bash
73 lines
2.5 KiB
Bash
#!/usr/bin/env bash
|
|
# Engine comes from community-scripts/core; this repo only ships the scripts.
|
|
# A local core checkout wins (COMMUNITY_SCRIPTS_CORE_DIR, else a sibling ../core),
|
|
# so a fork or branch of core can be tested without editing this file.
|
|
_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 community-scripts ORG
|
|
# Author: CrazyWolf13
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/ffind-dev/pve-ups
|
|
|
|
APP="PVE-UPS"
|
|
var_tags="${var_tags:-proxmox;ups;monitoring;network}"
|
|
var_cpu="${var_cpu:-1}"
|
|
var_ram="${var_ram:-512}"
|
|
var_disk="${var_disk:-4}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_arm64="${var_arm64:-no}"
|
|
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/pve-usv ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if check_for_gh_release "pve-usv" "ffind-dev/pve-ups"; then
|
|
msg_info "Stopping Services"
|
|
systemctl stop pve-usv pve-usv-agent.path pve-usv-agent.timer
|
|
msg_ok "Stopped Services"
|
|
|
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "pve-usv" "ffind-dev/pve-ups" "tarball"
|
|
|
|
msg_info "Updating Application"
|
|
cd /opt/pve-usv
|
|
$STD uv venv --clear venv
|
|
$STD uv pip install --python venv/bin/python .
|
|
chown -R pveusv:pveusv /opt/pve-usv
|
|
chmod 0755 deploy/pve-usv-agent.sh
|
|
install -m 0644 deploy/pve-usv.service /etc/systemd/system/pve-usv.service
|
|
install -m 0644 deploy/pve-usv-agent.service /etc/systemd/system/pve-usv-agent.service
|
|
install -m 0644 deploy/pve-usv-agent.path /etc/systemd/system/pve-usv-agent.path
|
|
install -m 0644 deploy/pve-usv-agent.timer /etc/systemd/system/pve-usv-agent.timer
|
|
systemctl daemon-reload
|
|
msg_ok "Updated Application"
|
|
|
|
msg_info "Starting Services"
|
|
systemctl start pve-usv pve-usv-agent.path pve-usv-agent.timer
|
|
msg_ok "Started Services"
|
|
msg_ok "Updated ${APP}"
|
|
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}:8080${CL}"
|