Im running off of Ubuntu 20.04 LTS
Now Mind you, ive ran this server for about a year... Then Upgraded to the new ubuntu services. Didnt change anything, ran it for about another 6 months. SUDDENLY NOW? not sure why, but when timed execute plugin runs to restart my server (as it always has) It NOW, is getting hung?
Yes I do have my start file within a do while loop. Consult my start up file below.
---------------------------------------------------
#!/bin/sh
clear
while :
do
echo "Starting server...\n"
export LD_LIBRARY_PATH=/home/steam/rust:/home/steam/rust/RustDedicated:{$LD_LIBRARY_PATH} ;
./RustDedicated \
+server.ip MY IP \
+server.port MY PORT \
+rcon.port MY PORT \
+rcon.password "MYPASSWORD" \
echo "\nServer Attributes loaded...\n" \
echo "\nRestarting server...\n" \
./startrust.sh
echo "DONE!"
done
-----------------------------------------
Any help is greatly appreciated, thanks.