mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 16:24:07 +02:00
13 lines
173 B
Bash
Executable File
13 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SERVICE=h4_backend.service
|
|
|
|
set -xe
|
|
|
|
cp deploy/$SERVICE /etc/systemd/system/$SERVICE
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable $SERVICE
|
|
systemctl start $SERVICE
|
|
|