Browse Source

Added symbolic link to SteamCMD logs in logs dir

pull/261/head
Daniel Gibbs 10 years ago
parent
commit
872c51df95
  1. 18
      functions/fn_loginstall

18
functions/fn_loginstall

@ -2,7 +2,7 @@
# LGSM fn_loginstall function
# Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk
# Version: 241214
# Version: 040115
echo ""
echo "Creating log directorys"
@ -16,7 +16,7 @@ mkdir -v "${consolelogdir}"
touch "${consolelog}"
# If a server is source or goldsource create a symbolic link to the game server logs
if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then
if [ ! -h ${rootdir}/log/server ]; then
if [ ! -h "${rootdir}/log/server" ]; then
ln -sv "${gamelogdir}" "${rootdir}/log/server"
else
echo "Symbolic link ${gamelogdir} => ${rootdir}/log/server already exists!"
@ -24,9 +24,19 @@ if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then
fi
# If a server is unreal2 or unity3d create a dir
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]; then
mkdir -pv ${gamelogdir}
mkdir -pv "${gamelogdir}"
fi
if [ "${gamename}" == "7 Days To Die" ]; then
ln -sv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt"
if [ ! -h "${gamelogdir}/output_log.txt" ]; then
ln -sv "${filesdir}/7DaysToDie_Data/output_log.txt" "${gamelogdir}/output_log.txt"
fi
fi
# If server uses SteamCMD create a symbolic link to the Steam logs
if [ -d "${rootdir}/Steam/logs" ]; then
if [ ! -h "${rootdir}/log/steamcmd" ]; then
ln -sv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd"
else
echo "Symbolic link ${rootdir}/Steam/logs => ${rootdir}/log/steamcmd already exists!"
fi
fi
sleep 1
Loading…
Cancel
Save