Hi, i want to start my WoW server (skyfire) automatically when my linux server (ubuntu) starts.
I made a script in /etc/init.d, it's named authserv and contains this :
#! /bin/sh
cd /home/root/skyfire/bin/ && ./authserver
And a second script named worldserv :
#! /bin/sh
cd /home/root/skyfire/bin/ && ./worldserver
After that, i did :
ln -s /etc/init.d/authserv /etc/rc2.d/S97authserv
ln -s /etc/init.d/worldserv /etc/rc2.d/S98worldserv
After one reboot, the authserver is launched but not the worldserver. It doesn't care if i name it S97worldserv or S96worldserv or S98world, it won't never work.
Since the authserver is started i think i did everything correctly so i don't see why the worldserver won't start.
If i start the auth and world servers with the command line they both work so everything is working good, except the worldserver autostart.
I made a screenshot to clarify : http://img807.imageshack.us/img807/3956/wtfserv.jpg
Any idea why ?
Thanks!