cdirt/ascii/
cdirt/data/BULL/
cdirt/data/ZONES/PENDING/
cdirt/pending/
cdirt/src/utils/
cdirt/utils/
#!/bin/sh
# Restart script, originally by Illusion.
# The MUD server is logged to 'server.log', all crashes and starts.

LOG=../server.log

echo Loading CDirt MUD Daemon...

echo -n 'Boot    : ' >> $LOG
date >> $LOG

cd ../bin
./dns-serv

(while : ; do
echo -n 'Start    : ' >> $LOG
date >> $LOG
./aberd -k -f
echo -n 'Crash    : ' >> $LOG
date >> $LOG
sleep 10
done \
)&