File size: 291 Bytes
eba303d
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

SERVICE_NAME="gradio.service"

echo "Stopping $SERVICE_NAME..."
sudo systemctl stop $SERVICE_NAME

if ! sudo systemctl is-active --quiet $SERVICE_NAME; then
    echo "$SERVICE_NAME stopped successfully."
else
    echo "Failed to stop $SERVICE_NAME. It may still be running."
fi