hercules/map-server.sh
Ibrahim Zidan b430aa85c0
Update bash scripts and athena-start to reflect new directory structure
Signed-off-by: Ibrahim Zidan <brahem@aotsw.com>
2026-06-27 22:21:32 +03:00

16 lines
272 B
Bash

#/bin/sh
#Hi my naem is Kirt and I liek anime
ulimit -Sc unlimited
while [ 1 ] ; do
if [ -f .stopserver ] ; then
echo server marked down >> server-log.txt
else
echo restarting server at time at `date +"%m-%d-%H:%M-%S"`>> start-log.txt
./bin/map-server
fi
sleep 5
done