h4-projekt-gruppe-0-sm/deploy/install_service.sh
2025-03-07 11:52:01 +01:00

13 lines
178 B
Bash
Executable File

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