arkmanager / ark-server-tools

Set of server tools used to manage ARK: Survival Evolved servers on Linux
MIT License
684 stars 144 forks source link

Restart Script? #987

Closed paperrain closed 5 years ago

paperrain commented 5 years ago

Good afternoon, is there a script that restarts all servers at the same time? Instead of recursively as it already does. Because it takes too long to reboot all servers and I've searched around here, but I can't find anything.

Thanks!

klightspeed commented 5 years ago

Something like:

for i in $(arkmanager list-instances --brief); do
    arkmanager restart @$i &
done
wait
paperrain commented 5 years ago

Thanks @klightspeed!