View Full Version : Think we found a workaround to the room db getting lost
Jasper9080
02-09-2002, 14:29
Ok. My TSS host, FastAttack of www.fastattack.org hosting, thinks we found a way to get TSS to remember the room info on restart.
When creating a new room besides regging it set it as "Default" and then create it and move on to your next room.
We have tried this successfully several times and each time the rooms all came back up after a restart.
Now, if we can just get it to remember the user db were set :P
FastAttack
02-09-2002, 14:33
I don't use the tss.minimal start but I use a modified Niels Werensteijn tss.sh
I am going to put it up here.
#! /bin/bash
# Copyright (c) 2001 TeamSpeak team All rights reserved.
#
# Author: Niels Werensteijn 2001
# Modded by : Fastattack
# /etc/init.d/tss.sh
#
### BEGIN INIT INFO
# Provides: tss
# Required-Start: $network
# Required-Stop:
# Default-Start: 3 5
# Default-Stop:
# Description: FastAttack
### END INIT INFO
cd /home/tss
if [ "$UID" = "0" ]; then
exec "su" - tss -c "/home/tss/tss.sh $1"
fi
case "$1" in
start)
echo Starting FastAttack Team Sound Server Daemon
/home/tss/server_linux -PID=/home/tss/tss2.pid > /dev/null
echo FastAttack Server Daemon successfully started!!
;;
stop)
echo Stopping FastAttack Server Daemon
kill -TERM `cat /home/tss/tss2.pid`
sleep 10
killall -9 server_linux
echo FastAttack Server Daemon Succesfully stopped.
;;
restart)
$0 stop && $0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0
Jasper9080
04-09-2002, 10:49
Nobody is posting back, did this help anyone else?
Did not help on my Win2k server... all channels were gone after reboot (except of course the std one).
vBulletin® v3.7.3, Copyright ©2000-2008, Jelsoft Enterprises Ltd.