Setting up daily automatic restarts in RustAdmin?
The 'restart' command never works for me. 
I always have to start the server manually.
5e24b22c2b06f.jpg RustSelvagem
The 'restart' command never works for me. 
I always have to start the server manually.

The "restart" command is not actually a restart, it's a shutdown/quit with a timer. The Rust server has no way to start itself.

you could always use TimedExecute plugin from here :

"RealTime-Timer": {
"03:54:59": "restart 300";
"03:59:30": "server.save"
},
tomhud
you could always use TimedExecute plugin from here :

"RealTime-Timer": {
"03:54:59": "restart 300";
"03:59:30": "server.save"
},

That will not start the server, only shut it down. You need an external tool to handle the starting, which is the issue the OP is facing.

With "TimeExecute" or "GUIAnnoncement" plugin, You must add this command at the end of the .bat or .sh file and there you will have an automatic restart.


CODE for .bat: 

echo.
echo Restarting server...
timeout /t 10
echo.
goto start


CODE for .sh: 

echo "\nRestarting server...\n
sleep 10
done


This is functional for me.  ;) :) ;)
If you are on Linux you can use LGSM and Cron to schedule restarts, handle updates, wipes and server crash monitoring and even have it report restarts and failures to discord.