fhl-server-configs/restart-services.sh

10 lines
219 B
Bash
Raw Normal View History

#!/bin/sh
2023-11-18 23:56:43 +00:00
systemctl restart freehl
2023-11-18 23:56:43 +00:00
find ./ -type f -name "server.cfg" -print | while read LINE
do
2023-11-18 23:56:43 +00:00
GAMEDIR=$(dirname "$LINE" | cut -d '/' -f 2)
echo systemctl restart freehl@$GAMEDIR
##systemctl restart "$FILE"
done