fhl-server-configs/restart-services.sh

13 lines
242 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2023-11-19 00:07:09 +00:00
systemctl --user 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)
if [ ! "$GAMEDIR" = "valve" ]
then
systemctl --user restart freehl@$GAMEDIR
fi
done