lgsm local mirror
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.
 
 

50 lines
1.3 KiB

#!/bin/bash
# LinuxGSM install_logs.sh function
# Author: Daniel Gibbs
# Website: https://gameservermanagers.com
# Description: Creates log directories.
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 LinuxGSM logs
mkdir -pv "${logdir}"
mkdir -pv "${lgsmlogdir}"
touch "${lgsmlog}"
# Create Console logs
if [ -n "${consolelogdir}" ]; then
mkdir -pv "${consolelogdir}"
touch "${consolelog}"
fi
# Create Game logs
if [ -n "${gamelogdir}" ]&&[ ! -d "${gamelogdir}" ]; then
mkdir -pv "${gamelogdir}"
fi
# Symlink to gamelogdir
# unless gamelogdir is within logdir
# e.g serverfiles/log is not within log/: symlink created
# log/server is in log/: symlink not created
if [ -n "${gamelogdir}" ]; then
if [ "${gamelogdir:0:${#logdir}}" != "${logdir}" ];then
ln -nfsv "${gamelogdir}" "${logdir}/server"
fi
fi
# If server uses SteamCMD create a symbolic link to the Steam logs
if [ -d "${rootdir}/Steam/logs" ]; then
if [ ! -L "${logdir}/steamcmd" ]; then
ln -nfsv "${rootdir}/Steam/logs" "${logdir}/steamcmd"
fi
fi
sleep 1
fn_script_log_info "Logs installed"