fix: derive brewpi home from script location in service install

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01VsJfJngYUpB4dr77GvcEb8
This commit is contained in:
2026-07-01 00:58:48 +02:00
co-authored by Claude Sonnet 4.6
parent 6651d43314
commit ab52c7e599
2 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ After=network.target
[Service] [Service]
Type=simple Type=simple
User=jens User=jens
WorkingDirectory=/home/jens/work/repos/brewpi WorkingDirectory=${BREWPI_HOME}
ExecStart=/home/jens/work/repos/brewpi/.venv/bin/python3 /home/jens/work/repos/brewpi/server/brewpi.py ExecStart=${BREWPI_HOME}/.venv/bin/python3 ${BREWPI_HOME}/server/brewpi.py
Restart=on-failure Restart=on-failure
RestartSec=5 RestartSec=5
+5 -3
View File
@@ -1,11 +1,13 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
SERVICE=brewpi SERVICE=brewpi
UNIT_FILE="$(dirname "$(realpath "$0")")/${SERVICE}.service" DEPLOY_DIR="$(dirname "$(realpath "$0")")"
UNIT_FILE="${DEPLOY_DIR}/${SERVICE}.service"
TARGET=/etc/systemd/system/${SERVICE}.service TARGET=/etc/systemd/system/${SERVICE}.service
sudo cp "$UNIT_FILE" "$TARGET" export BREWPI_HOME="$(realpath "${DEPLOY_DIR}/..")"
envsubst < "$UNIT_FILE" | sudo tee "$TARGET" > /dev/null
sudo systemctl daemon-reload sudo systemctl daemon-reload
sudo systemctl enable "$SERVICE" sudo systemctl enable "$SERVICE"
echo "Installed. Start with: sudo systemctl start $SERVICE" echo "Installed. Start with: sudo systemctl start $SERVICE"