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

16 lines
158 B
Bash
Executable File

#!/bin/sh
SERVICE=h4_backend.service
set -xe
set +e
systemctl stop $SERVICE
systemctl disable $SERVICE
set -e
sudo rm -rf /etc/systemd/system/$SERVICE