I guess sleep is the correct keyword to use

This commit is contained in:
Tekaoh
2020-02-02 16:06:04 -05:00
parent b0daf53d12
commit 7c8a47309e

View File

@@ -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