1 changed files with 27 additions and 0 deletions
@ -0,0 +1,27 @@ |
|||||
|
#!/bin/bash |
||||
|
# LGSM fn_details_glibc function |
||||
|
# Author: Daniel Gibbs |
||||
|
# Website: http://gameservermanagers.com |
||||
|
# Version: 160715 |
||||
|
|
||||
|
# Description: stores details on servers Glibc requirements. |
||||
|
|
||||
|
if [ "${engine}" == "avalanche" ]; then |
||||
|
glibcrequired="2.13" |
||||
|
elif [ "${engine}" == "dontstarve" ]; then |
||||
|
glibcrequired="2.15" |
||||
|
elif [ "${engine}" == "projectzomboid" ]; then |
||||
|
glibcrequired="2.15" |
||||
|
elif [ "${engine}" == "realvirtuality" ]; then |
||||
|
glibcrequired="2.13" |
||||
|
elif [ "${engine}" == "seriousengine35" ]; then |
||||
|
glibcrequired="2.13" |
||||
|
elif [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then |
||||
|
glibcrequired="2.07" |
||||
|
elif [ "${engine}" == "spark" ]; then |
||||
|
glibcrequired="2.15" |
||||
|
elif [ "${engine}" == "starbound" ]; then |
||||
|
glibcrequired="2.12" |
||||
|
elif [ "${engine}" == "unity3d" ]; then |
||||
|
glibcrequired="2.15" |
||||
|
fi |
Loading…
Reference in new issue