| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #!/bin/bash
- # LinuxGSM core_legacy.sh function
- # Author: Daniel Gibbs
- # Website: https://linuxgsm.com
- # Description: Code for backwards compatability with older versions of LinuxGSM.
- if [ -z "${serverfiles}" ]; then
- legacymode=1
- serverfiles="${filesdir}"
- fi
- if [ -z "${logdir}" ]; then
- logdir="${rootdir}/log"
- fi
- if [ -z "${lgsmlogdir}" ]; then
- lgsmlogdir="${scriptlogdir}"
- fi
- if [ -z "${lgsmlog}" ]; then
- lgsmlog="${scriptlog}"
- fi
- if [ -z "${lgsmlogdate}" ]; then
- lgsmlogdate="${scriptlogdate}"
- fi
- if [ -z "${steamcmddir}" ]; then
- steamcmddir="${rootdir}/steamcmd"
- fi
- if [ -z "${lgsmdir}" ]; then
- lgsmdir="${rootdir}/lgsm"
- fi
- if [ -z "${tmpdir}" ]; then
- tmpdir="${lgsmdir}/tmp"
- fi
- if [ -z "${alertlog}" ]; then
- alertlog="${emaillog}"
- fi
- # Alternations to workshop variables
- if [ -z "${wsapikey}" ]; then
- if [ "${workshopauth}" ]; then
- wsapikey="${workshopauth}"
- elif [ "${authkey}" ]; then
- wsapikey="${authkey}"
- fi
- fi
- if [ -z "${wscollectionid}" ]; then
- if [ "${workshopauth}" ]; then
- wscollectionid="${ws_collection_id}"
- elif [ "${authkey}" ]; then
- wscollectionid="${workshopcollectionid}"
- fi
- fi
- if [ -z "${wsstartmap}" ]; then
- if [ "${ws_start_map}" ]; then
- wscollectionid="${ws_start_map}"
- fi
- fi
|