SylenThunder
Community Moderator / IT Guru
You could set a cron job that runs periodically to start them back up again.
I think the crontab text would be like...
That should have cron start all instances every 5 minutes. If they are already up, nothing happens.
You could set up a task to see if they are up, and do nothing if they are. Then run the startup command if they are not. Then set that task to be run by cron. That's beyond my current ability though.
I think the crontab text would be like...
Code:
5 * * * * sdtd 7dtd.sh start "!"
You could set up a task to see if they are up, and do nothing if they are. Then run the startup command if they are not. Then set that task to be run by cron. That's beyond my current ability though.