--- Brian Merkley <[EMAIL PROTECTED]> wrote:
> Well I took the mud over from the prior owner and ASSUME that was the
> startup script... Here it is, do you see anything that could be causing
> this?
> 
> #!/bin/sh
> # Written by Furey.
> # With additions from Tony and Alander.
> # Converted to /bin/sh by Paruda :p
> 
> # Set the port number.
>   PORT=6565
> 
>   if test "$1" != ""
>   then
>      PORT="$1"
>   fi
> # Change to area directory.
>   cd ../area
> 
>   if test -e shutdown.txt
>   then
>      rm -f shutdown.txt
>   fi
> 
>   while true
>   do
>      # If you want to have logs in a different directory,
>      #   change the 'LOGFILE=' line to reflect the directory name.
>      INDEX=1000
> 
>      while true
>      do
>         LOGFILE="../log/$INDEX.log"
>         if test ! -e $LOGFILE
>         then
>             break
>         fi
>         INDEX=`expr $INDEX + 1`
>      done
> 
>      # Run ghost.
>      cp ../src/rom.exe ../src/romfile.exe
>      ../src/romfile.exe $PORT > $LOGFILE 2>&1
> 
>      # Restart, giving old connections a chance to die.
>      if test -e shutdown.txt
>      then
>         rm -f shutdown.txt
>         exit 0
>      fi
>      sleep 5
>   done

I would say to check first that you have a /bin/sh (which I believe you already
mentioned you did) and a rom.exe in the src dir for the mud. If you don't have
the sh program then contact your sysadmin. If you don't have the rom.exe
program then you'll need to build/compile it.

~Kender

=====
-----BEGIN GEEK CODE BLOCK-----
Version 3.1
GCS/L/C/O d-(+) s++:+ a-- C+++$>++++ UBLS++++$ 
P+++(--)$ L++>+++ E--- W+>++$ N !o K? w(--) !O 
M- !V PS+ PE(++) Y+ PGP->+ t- 5 X+() R(+) tv+@ 
b++(+++) !DI+++ D G(-) e>+++$ h---() r+++ y+++
------END GEEK CODE BLOCK------

__________________________________________________
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/

Reply via email to