fhl-server-configs/restart-services.sh

9 lines
199 B
Bash
Raw 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)
2023-11-19 00:07:09 +00:00
systemctl --user restart freehl@$GAMEDIR
done