mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 08:24:05 +02:00
16 lines
153 B
Bash
Executable File
16 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SERVICE=h4_backend.service
|
|
|
|
set -xe
|
|
|
|
set +e
|
|
systemctl stop $SERVICE
|
|
systemctl disable $SERVICE
|
|
set -e
|
|
|
|
rm -rf /etc/systemd/system/$SERVICE
|
|
|
|
|
|
|