Files
PiVideo/stop.sh
T

14 lines
302 B
Bash
Executable File

#! /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