diff --git a/swgtool.sh b/swgtool.sh index dfb67db..40a8a45 100755 --- a/swgtool.sh +++ b/swgtool.sh @@ -2,14 +2,14 @@ if [ "$1" = "start" ]; then sudo systemctl start stationchat.service - pause 1 + sleep 1 sudo systemctl start swg.service exit 0 fi if [ "$1" = "stop" ]; then sudo systemctl stop swg.service - pause 1 + sleep 1 sudo systemctl stop stationchat.service exit 0 fi