mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-16 18:23:27 +01:00
* Simplify Alpine update scripts to run upgrade Remove interactive whiptail menus, loops and newt dependency checks from ct/alpine-docker.sh, ct/alpine-zigbee2mqtt.sh, and ct/alpine.sh. Each update_script now simply calls header_info, runs $STD apk -U upgrade, displays a success message and exits, simplifying and automating the update flow. * feat(update-scripts): replace whiptail with msg_menu for unattended updates Remove all whiptail dialogs from ct update_script() functions and replace with msg_menu() - a lightweight read-based menu that supports: - PHS_SILENT=1: auto-selects first (default) option for unattended mode - Interactive: numbered menu with 10s timeout and default fallback Converted scripts (whiptail menu → msg_menu): - plex.sh, npmplus.sh, cronicle.sh, meilisearch.sh, node-red.sh - homeassistant.sh, podman-homeassistant.sh - vaultwarden.sh, alpine-vaultwarden.sh - loki.sh, alpine-loki.sh - alpine-grafana.sh, alpine-redis.sh, alpine-valkey.sh - alpine-nextcloud.sh Simplified scripts (removed unnecessary whiptail for single-action updates): - alpine.sh, alpine-docker.sh, alpine-zigbee2mqtt.sh Special handling: - gitea-mirror.sh: replaced yesno/msgbox with read -rp confirmations, exit 75 in silent mode for major version upgrades requiring interaction - vaultwarden.sh/alpine-vaultwarden.sh: passwordbox replaced with read -r -s -p, skipped in silent mode with warning - nginxproxymanager.sh: exit 1 → exit 75 for disabled script Infrastructure: - Added msg_menu() helper to misc/build.func - Added exit code 75 handling in update-apps.sh (skip, not fail) Closes #11620 * refactor(update-scripts): remove menus where sequential updates suffice - alpine-nextcloud: add apk upgrade as the update action (was missing) - meilisearch: run meilisearch + UI updates sequentially (like bar-assistant) - npmplus: run alpine upgrade + docker pull sequentially, no menu - vaultwarden: update VaultWarden + Web-Vault sequentially, remove admin token option (interactive-only, not suitable for unattended updates) - alpine-vaultwarden: just run apk upgrade, remove admin token menu
138 lines
4.4 KiB
Bash
138 lines
4.4 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/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/RayLabsHQ/gitea-mirror
|
|
|
|
APP="gitea-mirror"
|
|
var_tags="${var_tags:-mirror;gitea}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-2048}"
|
|
var_disk="${var_disk:-6}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
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/gitea-mirror ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
APP_VERSION=$(grep -o '"version": *"[^"]*"' /opt/gitea-mirror/package.json | cut -d'"' -f4)
|
|
if [[ $APP_VERSION =~ ^2\. ]]; then
|
|
if [[ "${PHS_SILENT:-0}" == "1" ]]; then
|
|
msg_warn "Version $APP_VERSION detected. Major version upgrade requires interactive confirmation, skipping."
|
|
exit 75
|
|
fi
|
|
msg_warn "WARNING: Version $APP_VERSION detected!"
|
|
msg_warn "Updating from version 2.x will CLEAR ALL CONFIGURATION."
|
|
msg_warn "This includes: API tokens, User settings, Repository configurations, All custom settings"
|
|
echo ""
|
|
read -r -p "Do you want to continue? (y/N): " CONFIRM
|
|
if [[ ! "$CONFIRM" =~ ^[Yy]$ ]]; then
|
|
exit 0
|
|
fi
|
|
msg_warn "FINAL WARNING: This update WILL clear all configuration!"
|
|
msg_warn "Please ensure you have backed up API tokens, custom configurations, and repository settings."
|
|
echo ""
|
|
read -r -p "Final confirmation - proceed? (y/N): " CONFIRM2
|
|
if [[ ! "$CONFIRM2" =~ ^[Yy]$ ]]; then
|
|
msg_info "Update cancelled. Please backup your configuration before proceeding."
|
|
exit 0
|
|
fi
|
|
msg_info "Proceeding with version $APP_VERSION update. All configuration will be cleared as warned."
|
|
rm -rf /opt/gitea-mirror
|
|
fi
|
|
|
|
if [[ ! -f /opt/gitea-mirror.env ]]; then
|
|
msg_info "Detected old Enviroment, updating files"
|
|
APP_SECRET=$(openssl rand -base64 32)
|
|
cat <<EOF >/opt/gitea-mirror.env
|
|
# See here for config options: https://github.com/RayLabsHQ/gitea-mirror/blob/main/docs/ENVIRONMENT_VARIABLES.md
|
|
NODE_ENV=production
|
|
HOST=0.0.0.0
|
|
PORT=4321
|
|
DATABASE_URL=sqlite://data/gitea-mirror.db
|
|
BETTER_AUTH_URL=http://${LOCAL_IP}:4321
|
|
BETTER_AUTH_SECRET=${APP_SECRET}
|
|
npm_package_version=${APP_VERSION}
|
|
EOF
|
|
rm /etc/systemd/system/gitea-mirror.service
|
|
cat <<EOF >/etc/systemd/system/gitea-mirror.service
|
|
[Unit]
|
|
Description=Gitea Mirror
|
|
After=network.target
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/opt/gitea-mirror
|
|
ExecStart=/usr/local/bin/bun dist/server/entry.mjs
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
EnvironmentFile=/opt/gitea-mirror.env
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl daemon-reload
|
|
msg_ok "Old Enviroment fixed"
|
|
fi
|
|
|
|
if check_for_gh_release "gitea-mirror" "RayLabsHQ/gitea-mirror"; then
|
|
msg_info "Stopping Services"
|
|
systemctl stop gitea-mirror
|
|
msg_ok "Services Stopped"
|
|
|
|
msg_info "Backup Data"
|
|
mkdir -p /opt/gitea-mirror-backup/data
|
|
cp /opt/gitea-mirror/data/* /opt/gitea-mirror-backup/data/
|
|
msg_ok "Backup Data"
|
|
|
|
msg_info "Installing Bun"
|
|
export BUN_INSTALL=/opt/bun
|
|
curl -fsSL https://bun.sh/install | $STD bash
|
|
ln -sf /opt/bun/bin/bun /usr/local/bin/bun
|
|
ln -sf /opt/bun/bin/bun /usr/local/bin/bunx
|
|
msg_ok "Installed Bun"
|
|
|
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "gitea-mirror" "RayLabsHQ/gitea-mirror" "tarball"
|
|
|
|
msg_info "Updating and rebuilding ${APP}"
|
|
cd /opt/gitea-mirror
|
|
$STD bun run setup
|
|
$STD bun run build
|
|
APP_VERSION=$(grep -o '"version": *"[^"]*"' package.json | cut -d'"' -f4)
|
|
|
|
sudo sed -i.bak "s|^npm_package_version=.*|npm_package_version=${APP_VERSION}|" /opt/gitea-mirror.env
|
|
msg_ok "Updated and rebuilt ${APP}"
|
|
|
|
msg_info "Restoring Data"
|
|
cp /opt/gitea-mirror-backup/data/* /opt/gitea-mirror/data
|
|
msg_ok "Restored Data"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl start gitea-mirror
|
|
msg_ok "Service Started"
|
|
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 "${TAB}${GATEWAY}${BGN}http://${IP}:4321${CL}"
|