feat: add systemd service unit and install script
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VsJfJngYUpB4dr77GvcEb8
This commit is contained in:
Executable
+12
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
SERVICE=brewpi
|
||||
UNIT_FILE="$(dirname "$(realpath "$0")")/${SERVICE}.service"
|
||||
TARGET=/etc/systemd/system/${SERVICE}.service
|
||||
|
||||
sudo cp "$UNIT_FILE" "$TARGET"
|
||||
sudo systemctl daemon-reload
|
||||
sudo systemctl enable "$SERVICE"
|
||||
echo "Installed. Start with: sudo systemctl start $SERVICE"
|
||||
echo "View logs with: journalctl -u $SERVICE -f"
|
||||
Reference in New Issue
Block a user