8 changed files with 197 additions and 56 deletions
@ -0,0 +1,5 @@ |
|||
################################## |
|||
######## Common Settings ######### |
|||
################################## |
|||
# PLACE GLOBAL SETTINGS HERE |
|||
## These settings will apply to all instances |
@ -0,0 +1,119 @@ |
|||
################################## |
|||
######## Default Settings ######## |
|||
################################## |
|||
# DO NOT EDIT WILL BE OVERWRITTEN! |
|||
|
|||
#### Server Settings #### |
|||
|
|||
## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters |
|||
# https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers#Starting_the_Server |
|||
# [Game Modes] gametype gamemode |
|||
# Arms Race 1 0 |
|||
# Classic Casual 0 0 |
|||
# Classic Competitive 0 1 |
|||
# Demolition 1 1 |
|||
# Deathmatch 1 2 |
|||
gametype="0" |
|||
gamemode="0" |
|||
defaultmap="de_mirage" |
|||
mapgroup="mg_active" |
|||
maxplayers="16" |
|||
tickrate="64" |
|||
port="27015" |
|||
sourcetvport="27016" |
|||
clientport="27017" |
|||
ip="0.0.0.0" |
|||
|
|||
## Required: Game Server Login Token |
|||
# GSLT is required for running a public server. |
|||
# More info: https://gameservermanagers.com/gslt |
|||
gslt="" |
|||
|
|||
## Optional: Workshop Parameters |
|||
# https://developer.valvesoftware.com/wiki/CSGO_Workshop_For_Server_Operators |
|||
# To get an authkey visit - http://steamcommunity.com/dev/apikey |
|||
authkey="" |
|||
ws_collection_id="" |
|||
ws_start_map="" |
|||
|
|||
## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters |
|||
fn_parms(){ |
|||
parms="-game csgo -usercon -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +sv_setsteamaccount ${gslt} -tickrate ${tickrate} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers_override ${maxplayers} +mapgroup ${mapgroup} +game_mode ${gamemode} +game_type ${gametype} +host_workshop_collection ${ws_collection_id} +workshop_start_map ${ws_start_map} -authkey ${authkey}" |
|||
} |
|||
|
|||
#### LinuxGSM Settings #### |
|||
|
|||
## Notification Alerts |
|||
# (on|off) |
|||
# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email |
|||
emailalert="off" |
|||
email="[email protected]" |
|||
emailfrom="" |
|||
|
|||
# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
channeltag="" |
|||
|
|||
## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update |
|||
updateonstart="off" |
|||
|
|||
## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup |
|||
maxbackups="4" |
|||
maxbackupdays="30" |
|||
stoponbackup="on" |
|||
|
|||
## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging |
|||
consolelogging="on" |
|||
logdays="7" |
|||
|
|||
#### LinuxGSM Advanced Settings #### |
|||
|
|||
## SteamCMD Settings |
|||
# Server appid |
|||
appid="740" |
|||
# Steam App Branch Select |
|||
# Allows to opt into the various Steam app branches. Default branch is "". |
|||
# Example: "-beta latest_experimental" |
|||
branch="" |
|||
|
|||
## LinuxGSM Server Details |
|||
# Do not edit |
|||
gamename="Counter-Strike: Global Offensive" |
|||
engine="source" |
|||
|
|||
#### Directories #### |
|||
# Edit with care |
|||
|
|||
## Work Directories |
|||
|
|||
lockselfname=".${servicename}.lock" |
|||
lgsmdir="${rootdir}/lgsm" |
|||
functionsdir="${lgsmdir}/functions" |
|||
libdir="${lgsmdir}/lib" |
|||
tmpdir="${lgsmdir}/tmp" |
|||
filesdir="${rootdir}/serverfiles" |
|||
|
|||
## Server Specific Directories |
|||
systemdir="${filesdir}/csgo" |
|||
executabledir="${filesdir}" |
|||
executable="./srcds_run" |
|||
servercfg="${servicename}.cfg" |
|||
servercfgdefault="server.cfg" |
|||
servercfgdir="${systemdir}/cfg" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
|
|||
## Backup Directory |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
## Logging Directories |
|||
gamelogdir="${systemdir}/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
## Logs Naming |
|||
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" |
|||
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" |
@ -0,0 +1,5 @@ |
|||
################################## |
|||
######## Instance Settings ######## |
|||
################################## |
|||
# PLACE INSTANCE SETTINGS HERE |
|||
## These settings will apply to a specific instance |
|
@ -1,20 +0,0 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM fn_functions function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="211016" |
|||
|
|||
# Description: Redirects to new core_functions.sh |
|||
|
|||
core_functions.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
core_getopt.sh(){ |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
core_functions.sh |
@ -1,15 +0,0 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM fn_getopt function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="211016" |
|||
|
|||
# Description: Redirect to new core_getopt.sh |
|||
|
|||
core_getopt.sh(){ |
|||
# Functions are defined in core_functions.sh. |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
core_getopt.sh |
@ -1,21 +0,0 @@ |
|||
#!/bin/bash |
|||
# LinuxGSM fn_update_functions function |
|||
# Author: Daniel Gibbs |
|||
# Website: https://gameservermanagers.com |
|||
lgsm_version="211016" |
|||
|
|||
# Description: LEGACY FUNCTION Deletes the functions dir to allow re-downloading of functions from GitHub. |
|||
|
|||
fn_print_dots "Updating functions" |
|||
sleep 1 |
|||
echo -ne "\n" |
|||
rm -rfv "${rootdir}/functions/"* |
|||
exitcode=$? |
|||
if [ "${exitcode}" == "0" ]; then |
|||
fn_print_ok "Updating functions" |
|||
fn_script_log "Success! Updating functions" |
|||
else |
|||
fn_print_fail "Updating functions" |
|||
fn_script_log "Failure! Updating functions" |
|||
fi |
|||
echo -ne "\n" |
Loading…
Reference in new issue