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.
26 lines
1.7 KiB
26 lines
1.7 KiB
# Game Settings File
|
|
# _default
|
|
# Base defaults for all games
|
|
|
|
# Set the default settings for the script
|
|
fn_set_game_params settings "email" "[email protected]" "Email address for notification"
|
|
fn_set_game_params settings "emailnotification" "off" "Email notification (on|off)"
|
|
fn_set_game_params settings "ip" "0.0.0.0" "IP Address to bind for server"
|
|
fn_set_game_params settings "lgsm_version" "${version}" "Version of LGSM that created this config"
|
|
fn_set_game_params settings "logdays" "7" "Number of days to retain logs"
|
|
fn_set_game_params settings "updateonstart" "off" "Update game on start"
|
|
fn_set_game_params settings "lockselfname" "\${lgsmdir}/.\${servicename}.lock" "LGSM Lock File"
|
|
fn_set_game_params settings "filesdir" "\${rootdir}/serverfiles" "Server Files Directory"
|
|
fn_set_game_params settings "backupdir" "\${lgsmdir}/backups" "Backup Directory"
|
|
fn_set_game_params settings "scriptlogdir" "\${lgsmdir}/log/script" "Script Log Dir"
|
|
fn_set_game_params settings "consolelogdir" "\${lgsmdir}/log/console" "Console Log Dir"
|
|
fn_set_game_params settings "scriptlog" "\${scriptlogdir}/\${servicename}-script.log" "Script Log"
|
|
fn_set_game_params settings "consolelog" "\${consolelogdir}/\${servicename}-console.log" "Console Log"
|
|
fn_set_game_params settings "emaillog" "\${scriptlogdir}/\${servicename}-email.log" "Email Log"
|
|
fn_set_game_params settings "scriptlogdate" "\${scriptlogdir}/\${servicename}-script-\$(date '+%d-%m-%Y-%H-%M-%S').log" "Script Log Rotation Filename"
|
|
fn_set_game_params settings "consolelogdate" "\${consolelogdir}/\${servicename}-console-\$(date '+%d-%m-%Y-%H-%M-%S').log" "Console Log Rotation Filename"
|
|
|
|
# Default fn_parms does nothing right now, gets overridden by later instances
|
|
fn_parms(){
|
|
parms=""
|
|
}
|
|
|