fhl-server-configs/disable-services.sh

9 lines
190 B
Bash
Raw Normal View History

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