mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
14 lines
139 B
Bash
Executable File
14 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SERVICE=h4backend.service
|
|
|
|
set -xe
|
|
|
|
systemctl stop $SERVICE
|
|
systemctl disable $SERVICE
|
|
|
|
sudo rm /etc/systemd/system/$SERVICE
|
|
|
|
|
|
|