gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
#!/bin/bash
|
|
# LGSM install_logs.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
|
|
local commandname="INSTALL"
|
|
local commandaction="Install"
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
if [ "${checklogs}" != "1" ]; then
|
|
echo ""
|
|
echo "Creating log directories"
|
|
echo "================================="
|
|
fi
|
|
sleep 1
|
|
# Create dir's for the script and console logs
|
|
mkdir -v "${rootdir}/log"
|
|
mkdir -v "${scriptlogdir}"
|
|
touch "${scriptlog}"
|
|
if [ -n "${consolelogdir}" ]; then
|
|
mkdir -v "${consolelogdir}"
|
|
touch "${consolelog}"
|
|
fi
|
|
|
|
# If a server is source or goldsource, Teamspeak 3, Starbound, Project Zomhoid create a symbolic link to the game server logs.
|
|
if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]||[ "${gamename}" == "Teamspeak 3" ]||[ "${engine}" == "starbound" ]||[ "${engine}" == "projectzomboid" ]||[ "${engine}" == "unreal" ]; then
|
|
if [ ! -h "${rootdir}/log/server" ]; then
|
|
ln -nfsv "${gamelogdir}" "${rootdir}/log/server"
|
|
fi
|
|
fi
|
|
|
|
# If a server is unreal2 or unity3d create a dir.
|
|
if [ "${engine}" == "unreal2" ]||[ "${engine}" == "unity3d" ]||[ "${gamename}" == "Teeworlds" ]||[ "${gamename}" == "seriousengine35" ]; then
|
|
mkdir -pv "${gamelogdir}"
|
|
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 -nfsv "${rootdir}/Steam/logs" "${rootdir}/log/steamcmd"
|
|
fi
|
|
fi
|
|
sleep 1
|
|
fn_script_log_info "Logs installed"
|