h4-projekt-gruppe-0-sm/deploy/install_service.sh
2025-03-07 10:02:49 +01:00

15 lines
198 B
Bash
Executable File

#!/bin/sh
SERVICE=h4backend.service
set -xe
sudo cp deploy/$SERVICE /etc/systemd/user/$SERVICE
systemctl --user daemon-reload
systemctl --user enable $SERVICE
systemctl --user start $SERVICE