Browse Source

fix(untserver): remove mono-complete requirement and fix query port (#3039)

* mono-complete no longer required for unturned

* added query port for unturned
pull/3047/head
Daniel Gibbs 5 years ago
committed by GitHub
parent
commit
d9690f85a8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      lgsm/functions/check_deps.sh
  2. 1
      lgsm/functions/info_parms.sh

6
lgsm/functions/check_deps.sh

@ -443,9 +443,6 @@ fn_deps_build_debian(){
# Unreal Tournament
elif [ "${shortname}" == "ut" ]; then
array_deps_required+=( unzip )
# Unturned
elif [ "${shortname}" == "unt" ]; then
array_deps_required+=( mono-complete )
# Wurm: Unlimited
elif [ "${shortname}" == "wurm" ]; then
array_deps_required+=( xvfb )
@ -555,9 +552,6 @@ fn_deps_build_redhat(){
# Unreal Tournament
elif [ "${shortname}" == "ut" ]; then
array_deps_required+=( unzip )
# Unturned
elif [ "${shortname}" == "unt" ]; then
array_deps_required+=( mono-complete )
# Wurm: Unlimited
elif [ "${shortname}" == "wurm" ]; then
array_deps_required+=( xorg-x11-server-Xvfb )

1
lgsm/functions/info_parms.sh

@ -220,6 +220,7 @@ fn_info_parms_unreal3(){
fn_info_parms_unturned(){
servername=${selfname:-"NOT SET"}
port=${port:-"0"}
queryport=$((port + 1))
}
fn_info_parms_ut(){

Loading…
Cancel
Save