[Solved] restart function doesn't work
#2
I can confirm this happens to me as well. Apparently, restart is not properly supported. It is not your fault.

In the meantime, I suggest you put Cuberite inside some wrapper script which restarts it whenever it exits:

Save this as wrapper.sh:
#!/bin/sh
while [ 1 -eq 1 ]; do
    ./cuberite
    echo "Restarting Cuberite in 10 seconds..."
    sleep 10
done

To start cuberite:
chmod +x wrapper.sh
./wrapper.sh
Reply
Thanks given by: xelor , marcdraco


Messages In This Thread
[Solved] restart function doesn't work - by xelor - 05-03-2016, 01:49 AM
RE: restart function dont works - by LogicParrot - 05-03-2016, 04:24 AM
RE: restart function doesn't work - by xelor - 05-03-2016, 07:19 AM



Users browsing this thread: 1 Guest(s)