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.
17 lines
553 B
17 lines
553 B
#!/bin/bash
|
|
# LGSM check_logs.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Checks that log files exist on server start
|
|
|
|
local commandnane="CHECK"
|
|
local selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
# Create dir's for the script and console logs
|
|
if [ ! -d "${scriptlogdir}" ]||[ ! -d "${consolelogdir}" ]&&[ "${gamename}" != "Teamspeak 3" ]; then
|
|
fn_print_dots "Checking for log files"
|
|
sleep 0.5
|
|
fn_print_info_nl "Checking for log files: Creating log files"
|
|
checklogs=1
|
|
install_logs.sh
|
|
fi
|
|
|