Refactor update_script and installation process for Guardian to enhance backup handling, streamline frontend build, and improve service configurations

This commit is contained in:
Vincent 2025-09-30 15:42:50 -04:00
parent c9f81a23c5
commit 7f876d101d
2 changed files with 14 additions and 28 deletions

View File

@ -24,43 +24,37 @@ function update_script() {
check_container_storage check_container_storage
check_container_resources check_container_resources
# Check if installation is present | -f for file, -d for folder
if [[ ! -d "/opt/${APP}" ]]; then if [[ ! -d "/opt/${APP}" ]]; then
msg_error "No ${APP} Installation Found!" msg_error "No ${APP} Installation Found!"
exit exit
fi fi
# Crawling the new version and checking whether an update is required
RELEASE=$(curl -fsSL https://api.github.com/repos/HydroshieldMKII/Guardian/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') RELEASE=$(curl -fsSL https://api.github.com/repos/HydroshieldMKII/Guardian/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
# Stopping Services
msg_info "Stopping $APP" msg_info "Stopping $APP"
systemctl stop guardian-backend guardian-frontend systemctl stop guardian-backend guardian-frontend
msg_ok "Stopped $APP" msg_ok "Stopped $APP"
# Creating Backup
msg_info "Creating Backup"
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /opt/Guardian
msg_ok "Backup Created"
# Preserve Database
msg_info "Preserving Database" msg_info "Preserving Database"
if [[ -f "/opt/Guardian/backend/plex-guard.db" ]]; then if [[ -f "/opt/Guardian/backend/plex-guard.db" ]]; then
cp "/opt/Guardian/backend/plex-guard.db" "/tmp/plex-guard.db.backup" cp "/opt/Guardian/backend/plex-guard.db" "/tmp/plex-guard.db.backup"
msg_ok "Database backed up" msg_ok "Database backed up"
fi fi
# Execute Update
msg_info "Updating $APP to v${RELEASE}" msg_info "Updating $APP to v${RELEASE}"
cd /tmp cd /tmp
curl -fsSL -o "${RELEASE}.zip" "https://github.com/HydroshieldMKII/Guardian/archive/refs/tags/${RELEASE}.zip" curl -fsSL -o "${RELEASE}.zip" "https://github.com/HydroshieldMKII/Guardian/archive/refs/tags/${RELEASE}.zip"
unzip -q "${RELEASE}.zip" unzip -q "${RELEASE}.zip"
rm -rf /opt/Guardian rm -rf /opt/Guardian
# Strip 'v' prefix from RELEASE for folder name
FOLDER_NAME=$(echo "${RELEASE}" | sed 's/^v//') FOLDER_NAME=$(echo "${RELEASE}" | sed 's/^v//')
mv "Guardian-${FOLDER_NAME}/" "/opt/Guardian" mv "Guardian-${FOLDER_NAME}/" "/opt/Guardian"
# Restore Database
if [[ -f "/tmp/plex-guard.db.backup" ]]; then if [[ -f "/tmp/plex-guard.db.backup" ]]; then
msg_info "Restoring Database" msg_info "Restoring Database"
cp "/tmp/plex-guard.db.backup" "/opt/Guardian/backend/plex-guard.db" cp "/tmp/plex-guard.db.backup" "/opt/Guardian/backend/plex-guard.db"
@ -68,25 +62,21 @@ function update_script() {
msg_ok "Database restored" msg_ok "Database restored"
fi fi
# Build Backend
cd /opt/Guardian/backend cd /opt/Guardian/backend
npm ci npm ci
npm run build npm run build
# Build Frontend
cd /opt/Guardian/frontend cd /opt/Guardian/frontend
npm ci npm ci
npm run build NODE_ENV=development npm run build
echo "${RELEASE}" >/opt/${APP}_version.txt echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated $APP to v${RELEASE}" msg_ok "Updated $APP to v${RELEASE}"
# Starting Services
msg_info "Starting $APP" msg_info "Starting $APP"
systemctl start guardian-backend guardian-frontend systemctl start guardian-backend guardian-frontend
msg_ok "Started $APP" msg_ok "Started $APP"
# Cleaning up
msg_info "Cleaning Up" msg_info "Cleaning Up"
rm -rf /tmp/"${RELEASE}.zip" /tmp/"Guardian-${FOLDER_NAME}" /tmp/plex-guard.db.backup rm -rf /tmp/"${RELEASE}.zip" /tmp/"Guardian-${FOLDER_NAME}" /tmp/plex-guard.db.backup
msg_ok "Cleanup Completed" msg_ok "Cleanup Completed"

View File

@ -5,7 +5,6 @@
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://github.com/HydroshieldMKII/Guardian # Source: https://github.com/HydroshieldMKII/Guardian
# Import Functions und Setup
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color color
verb_ip6 verb_ip6
@ -14,7 +13,6 @@ setting_up_container
network_check network_check
update_os update_os
# Installing Dependencies
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt-get install -y \ $STD apt-get install -y \
git \ git \
@ -25,31 +23,30 @@ $STD apt-get install -y \
curl curl
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
# Setup App
msg_info "Setup Guardian" msg_info "Setup Guardian"
RELEASE=$(curl -fsSL https://api.github.com/repos/HydroshieldMKII/Guardian/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') RELEASE=$(curl -fsSL https://api.github.com/repos/HydroshieldMKII/Guardian/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
curl -fsSL -o "${RELEASE}.zip" "https://github.com/HydroshieldMKII/Guardian/archive/refs/tags/${RELEASE}.zip" curl -fsSL -o "${RELEASE}.zip" "https://github.com/HydroshieldMKII/Guardian/archive/refs/tags/${RELEASE}.zip"
unzip -q "${RELEASE}.zip" unzip -q "${RELEASE}.zip"
# Strip 'v' prefix from RELEASE for folder name
FOLDER_NAME=$(echo "${RELEASE}" | sed 's/^v//') FOLDER_NAME=$(echo "${RELEASE}" | sed 's/^v//')
mv "Guardian-${FOLDER_NAME}/" "/opt/Guardian" mv "Guardian-${FOLDER_NAME}/" "/opt/Guardian"
echo "${RELEASE}" >/opt/Guardian_version.txt echo "${RELEASE}" >/opt/Guardian_version.txt
msg_ok "Setup Guardian" msg_ok "Setup Guardian"
# ===== Build Backend =====
msg_info "Building backend" msg_info "Building backend"
cd /opt/Guardian/backend cd /opt/Guardian/backend
npm ci npm ci
npm run build npm run build
msg_ok "Built backend" msg_ok "Built backend"
# ===== Install Frontend Dependencies ===== msg_info "Building frontend"
msg_info "Installing frontend dependencies"
cd /opt/Guardian/frontend cd /opt/Guardian/frontend
npm ci npm ci
msg_ok "Installed frontend dependencies" NODE_ENV=development npm run build
msg_ok "Built frontend"
# ===== Backend Service =====
msg_info "Creating Backend Service" msg_info "Creating Backend Service"
cat <<EOF >/etc/systemd/system/guardian-backend.service cat <<EOF >/etc/systemd/system/guardian-backend.service
[Unit] [Unit]
@ -69,7 +66,6 @@ EOF
systemctl enable -q --now guardian-backend systemctl enable -q --now guardian-backend
msg_ok "Created Backend Service" msg_ok "Created Backend Service"
# ===== Frontend Service =====
msg_info "Creating Frontend Service" msg_info "Creating Frontend Service"
cat <<EOF >/etc/systemd/system/guardian-frontend.service cat <<EOF >/etc/systemd/system/guardian-frontend.service
[Unit] [Unit]
@ -79,9 +75,9 @@ Wants=guardian-backend.service
[Service] [Service]
WorkingDirectory=/opt/Guardian/frontend WorkingDirectory=/opt/Guardian/frontend
Environment=NODE_ENV=development Environment=NODE_ENV=production
Environment=PORT=3000 Environment=PORT=3000
ExecStart=/usr/bin/npm run dev ExecStart=/usr/bin/npm run start
Restart=always Restart=always
RestartSec=3 RestartSec=3