2015-09-16 21:00:24 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
DEBUG='/home/quentinbd/script/debug-mff-creative.txt'
|
|
|
|
MOREDEBUG='/home/quentinbd/script/moredebug-mff-creative.txt'
|
|
|
|
|
|
|
|
cd /home/quentinbd/mff-creative
|
|
|
|
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
echo "----------------------" >>$MOREDEBUG
|
|
|
|
echo "Server restarted at "`date` >>$MOREDEBUG
|
|
|
|
echo "----------------------" >>$MOREDEBUG
|
|
|
|
|
|
|
|
echo "0" >/tmp/players_c.txt
|
|
|
|
|
|
|
|
/home/quentinbd/mff-creative/bin/minetestserver \
|
|
|
|
--world /home/quentinbd/mff-creative/worlds/minetestforfun-creative/ \
|
|
|
|
--config /home/quentinbd/mff-creative/minetest.conf \
|
|
|
|
--gameid minetestforfun_creative \
|
2015-09-16 22:33:52 +02:00
|
|
|
--port 30088 \
|
2015-09-16 21:00:24 +02:00
|
|
|
# --logfile $DEBUG
|
|
|
|
|
|
|
|
sleep 25
|
|
|
|
done &>> $MOREDEBUG
|