From 1bd1ddc20eb0e42bcb81fb7ecc41a7a539554867 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Mon, 20 Jul 2026 22:41:16 -0500 Subject: [PATCH] fix: correct installation directory path in Proxmox LXC setup script --- frontend/deploy/proxmox-lxc-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/deploy/proxmox-lxc-setup.sh b/frontend/deploy/proxmox-lxc-setup.sh index ff36da4..9f4a3f7 100644 --- a/frontend/deploy/proxmox-lxc-setup.sh +++ b/frontend/deploy/proxmox-lxc-setup.sh @@ -5,12 +5,12 @@ set -euo pipefail -INSTALL_DIR="/opt/thermopro-frontend" +INSTALL_DIR="/opt/frontend" DATA_DIR="/data" SERVICE_NAME="thermopro-frontend" if [[ $EUID -ne 0 ]]; then - echo "This script must be run as root (e.g. inside the LXC container)" >&2 + echo "This script must be run as root inside the LXC container" >&2 exit 1 fi