@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version = "180908 "
version = "181007 "
shortname = "core"
gameservername = "core"
rootdir = " $( dirname " $( readlink -f " ${ BASH_SOURCE [0] } " ) " ) "
@ -38,6 +38,7 @@ tmpdir="${lgsmdir}/tmp"
configdir = " ${ lgsmdir } /config-lgsm "
configdirserver = " ${ configdir } / ${ gameservername } "
configdirdefault = " ${ lgsmdir } /config-default "
userinput = " ${ 1 } "
## GitHub Branch Select
# Allows for the use of different function files
@ -254,9 +255,14 @@ fn_install_file(){
exit
}
# Prevent from running this script as root .
# Prevent LinuxGSM from running as root. Except if doing a dependency install .
if [ " $( whoami) " = = "root" ] ; then
if [ ! -f " ${ functionsdir } /core_functions.sh " ] || [ ! -f " ${ functionsdir } /check_root.sh " ] || [ ! -f " ${ functionsdir } /core_messages.sh " ] ; then
if [ " ${ userinput } " = = "install" ] || [ " ${ userinput } " = = "auto-install" ] || [ " ${ userinput } " = = "i" ] || [ " ${ userinput } " = = "ai" ] ; then
if [ " ${ shortname } " = = "core" ] ; then
echo "[ FAIL ] Do NOT run this script as root!"
exit 1
fi
elif [ ! -f " ${ functionsdir } /core_functions.sh " ] || [ ! -f " ${ functionsdir } /check_root.sh " ] || [ ! -f " ${ functionsdir } /core_messages.sh " ] ; then
echo "[ FAIL ] Do NOT run this script as root!"
exit 1
else
@ -267,7 +273,6 @@ fi
# LinuxGSM installer mode
if [ " ${ shortname } " = = "core" ] ; then
userinput = $1
datadir = " ${ tmpdir } /data "
serverlist = " ${ datadir } /serverlist.csv "
@ -310,7 +315,7 @@ if [ "${shortname}" == "core" ]; then
# LinuxGSM Server Mode
else
core_functions.sh
if [ " ${ shortname } " != "core-dep" ] ; then
# Load LinuxGSM configs
# These are required to get all the default variables for the specific server.
# Load the default config. If missing download it. If changed reload it.
@ -364,6 +369,7 @@ else
if [ ! -f " ${ tmpdir } /linuxgsm.sh " ] ; then
fn_fetch_file_github "" "linuxgsm.sh" " ${ tmpdir } " "chmodx" "norun" "noforcedl" "nomd5"
fi
fi
# Enables ANSI colours from core_messages.sh. Can be disabled with ansi=off
fn_ansi_loader
# Prevents running of core_exit.sh for Travis.