fhl-server-configs/stop-services.sh

13 lines
241 B
Bash
Raw Normal View History

2023-11-19 00:07:09 +00:00
#!/bin/sh
systemctl --user restart freehl
find ./ -type f -name "server.cfg" -print | while read LINE
do
GAMEDIR=$(dirname "$LINE" | cut -d '/' -f 2)
if [ "$GAMEDIR" != "valve" ]
then
systemctl --user restart freehl@$GAMEDIR
fi
done