Browse Source
fix(rust): increase rust query delay (#3412)
5 mins is not enough for some servers to load and query to become available
pull/3418/head
Daniel Gibbs
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
lgsm/config-default/config-lgsm/rustserver/_default.cfg
-
lgsm/functions/check_deps.sh
|
|
@ -108,7 +108,7 @@ logdays="7" |
|
|
|
|
|
|
|
## Monitor | https://docs.linuxgsm.com/commands/monitor |
|
|
|
# Query delay time |
|
|
|
querydelay="5" |
|
|
|
querydelay="10" |
|
|
|
|
|
|
|
## ANSI Colors | https://docs.linuxgsm.com/features/ansi-colors |
|
|
|
ansi="on" |
|
|
|
|
|
@ -350,7 +350,7 @@ fn_deps_build_debian(){ |
|
|
|
if [ "${shortname}" != "ts3" ]&&[ "${shortname}" != "mumble" ]&&[ "${shortname}" != "mc" ]&&[ "${shortname}" != "pmc" ]&&[ "${shortname}" != "wmc" ]&&[ "${engine}" != "renderware" ]; then |
|
|
|
if [ "${arch}" == "x86_64" ]; then |
|
|
|
# lib32gcc1 is now called lib32gcc-s1 in debian 11 |
|
|
|
if { [ "${distroid}" == "debian" ]&&[ "${distroversion}" == "11" ]; }|| { [ "${distroid}" == "ubuntu" ]&&[ "${distroversion}" == "20.10" ]; } ||{ [ "${distroid}" == "pop" ]&&[ "${distroversion}" == "20.10" ]; }; then |
|
|
|
if { [ "${distroid}" == "debian" ]&&[ "${distroversion}" == "11" ]; }||{ [ "${distroid}" == "ubuntu" ]&&[ "${distroversion}" == "20.10" ]; }||{ [ "${distroid}" == "pop" ]&&[ "${distroversion}" == "20.10" ]; }; then |
|
|
|
array_deps_required+=( lib32gcc-s1 lib32stdc++6 ) |
|
|
|
else |
|
|
|
array_deps_required+=( lib32gcc1 lib32stdc++6 ) |
|
|
|