This commit is contained in:
Tim
2024-08-11 11:50:32 +02:00
commit c6c636ae04
7 changed files with 163 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#! /bin/bash
GREEN='\033[0;32m'
NOCOLOR='\033[0m'
SERVICE_NAME="pivideo.service"
echo -e "${GREEN}======== Stoppe Dienst =========${NOCOLOR}"
sudo systemctl stop $SERVICE_NAME
echo -e "${GREEN}======== Stoppe Autostart des Diensts =========${NOCOLOR}"
sudo systemctl disable $SERVICE_NAME
exit 0