Heya,
I've improved the startup script a bit so you can call it from whatever directory you are located in. Here's the diff:
Code:
--- ts3server_startscript.sh.orig 2010-02-08 10:54:49.000000000 +0100
+++ ts3server_startscript.sh 2010-02-11 18:55:06.000000000 +0100
@@ -4,16 +4,16 @@
COMMANDLINE_PARAMETERS="" #add any command line parameters you want to pass here
+BINARYPATH=`dirname $0`
+cd "${BINARYPATH}"
+LIBRARYPATH="$(pwd)"
+
if [ -e "ts3server_linux_x86" ]; then
BINARYNAME="ts3server_linux_x86"
else
BINARYNAME="ts3server_linux_amd64"
fi
-BINARYPATH="."
-cd "${BINARYPATH}"
-LIBRARYPATH="$(pwd)"
-
case "$1" in
start)
if [ -e ts3server.pid ]; then