Browse Source

Added teamspeak 3 to check logs

pull/392/head
Daniel Gibbs 10 years ago
parent
commit
ca1028a6bc
  1. 15
      functions/fn_check_logs

15
functions/fn_check_logs

@ -2,7 +2,7 @@
# LGSM fn_check_logs function # LGSM fn_check_logs function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://gameservermanagers.com # Website: http://gameservermanagers.com
# Version: 160415 # Version: 160515
# Description: Checks that log files exist on server start # Description: Checks that log files exist on server start
# Create dir's for the script and console logs # Create dir's for the script and console logs
@ -36,6 +36,8 @@ if [ ! -f "${scriptlog}" ]; then
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]; then if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]; then
mkdir -pv "${gamelogdir}" mkdir -pv "${gamelogdir}"
fi fi
# If a server is 7 Days to Die
if [ "${gamename}" == "7 Days To Die" ]; then if [ "${gamename}" == "7 Days To Die" ]; then
if [ ! -h "${gamelogdir}/output_log.txt" ]; then if [ ! -h "${gamelogdir}/output_log.txt" ]; then
ln -nfsv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt" ln -nfsv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt"
@ -59,5 +61,16 @@ if [ ! -f "${scriptlog}" ]; then
echo "Symbolic link ${rootdir}/Steam/logs => ${rootdir}/log/steamcmd already exists!" echo "Symbolic link ${rootdir}/Steam/logs => ${rootdir}/log/steamcmd already exists!"
fi fi
fi fi
# If server is Teamspeak 3
if [ "${engine}" == "Teamspeak 3" ]; then
if [ ! -d "${scriptlogdir}" ];then
mkdir "${rootdir}/log"
mkdir "${scriptlogdir}"
fi
if [ ! -h "${rootdir}/log/server" ]; then
ln -sv "${gamelogdir}" "${rootdir}/log/server"
fi
fi
sleep 1 sleep 1
fi fi
Loading…
Cancel
Save