Browse Source
feat(fctr): add function to get the server version via the details command (#3956)
pull/3963/head
Christian
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
lgsm/functions/info_game.sh
|
|
@ -653,6 +653,12 @@ fn_info_game_fctr() { |
|
|
|
port=${port:-"0"} |
|
|
|
rconport=${rconport:-"0"} |
|
|
|
rconpassword=${rconpassword:-"NOT SET"} |
|
|
|
|
|
|
|
# get server version if installed |
|
|
|
local factoriobin="${executabledir}${executable:1}" |
|
|
|
if [ -f "${factoriobin}" ]; then |
|
|
|
serverversion=$(${factoriobin} --version | grep "Version:" | awk '{print $2}') |
|
|
|
fi |
|
|
|
} |
|
|
|
|
|
|
|
fn_info_game_jc2() { |
|
|
|