|
@ -107,6 +107,8 @@ fn_deps_detector(){ |
|
|
depstatus=0 |
|
|
depstatus=0 |
|
|
deptocheck="${javaversion}" |
|
|
deptocheck="${javaversion}" |
|
|
unset javacheck |
|
|
unset javacheck |
|
|
|
|
|
elif [ "${deptocheck}" == "jq" ]&&[ "${distroversion}" == "6" ]; then |
|
|
|
|
|
jqstatus=1 |
|
|
elif [ "${deptocheck}" == "mono-complete" ]; then |
|
|
elif [ "${deptocheck}" == "mono-complete" ]; then |
|
|
if [ "$(command -v mono 2>/dev/null)" ]&&[ "$(mono --version 2>&1 | grep -Po '(?<=version )\d')" -ge 5 ]; then |
|
|
if [ "$(command -v mono 2>/dev/null)" ]&&[ "$(mono --version 2>&1 | grep -Po '(?<=version )\d')" -ge 5 ]; then |
|
|
# Mono >= 5.0.0 already installed |
|
|
# Mono >= 5.0.0 already installed |
|
@ -182,6 +184,10 @@ fn_found_missing_deps(){ |
|
|
if [ -n "${monostatus}" ]; then |
|
|
if [ -n "${monostatus}" ]; then |
|
|
fn_install_mono_repo |
|
|
fn_install_mono_repo |
|
|
fi |
|
|
fi |
|
|
|
|
|
if [ -n "${jqstatus}" ]; then |
|
|
|
|
|
fn_print_warning_nl "jq is not available in the ${distroname} repository" |
|
|
|
|
|
echo " * https://github.com/GameServerManagers/LinuxGSM/wiki/jq" |
|
|
|
|
|
fi |
|
|
sudo -v > /dev/null 2>&1 |
|
|
sudo -v > /dev/null 2>&1 |
|
|
if [ $? -eq 0 ]; then |
|
|
if [ $? -eq 0 ]; then |
|
|
fn_print_information_nl "Automatically installing missing dependencies." |
|
|
fn_print_information_nl "Automatically installing missing dependencies." |
|
@ -268,7 +274,7 @@ fn_deps_build_debian(){ |
|
|
array_deps_missing=() |
|
|
array_deps_missing=() |
|
|
|
|
|
|
|
|
## LinuxGSM requirements |
|
|
## LinuxGSM requirements |
|
|
array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip binutils bc ) |
|
|
array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip binutils bc jq ) |
|
|
|
|
|
|
|
|
# All servers except ts3 require tmux |
|
|
# All servers except ts3 require tmux |
|
|
if [ "${shortname}" != "ts3" ]; then |
|
|
if [ "${shortname}" != "ts3" ]; then |
|
@ -373,13 +379,13 @@ fn_deps_build_redhat(){ |
|
|
# LinuxGSM requirements |
|
|
# LinuxGSM requirements |
|
|
## CentOS 6 |
|
|
## CentOS 6 |
|
|
if [ "${distroversion}" == "6" ]; then |
|
|
if [ "${distroversion}" == "6" ]; then |
|
|
array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip binutils bc ) |
|
|
array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip binutils bc jq ) |
|
|
elif [ "${distroid}" == "fedora" ]; then |
|
|
elif [ "${distroid}" == "fedora" ]; then |
|
|
array_deps_required=( curl wget util-linux python2 file gzip bzip2 unzip binutils bc ) |
|
|
array_deps_required=( curl wget util-linux python2 file gzip bzip2 unzip binutils bc jq ) |
|
|
elif [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then |
|
|
elif [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then |
|
|
array_deps_required=( curl wget util-linux python27 file gzip bzip2 unzip binutils bc ) |
|
|
array_deps_required=( curl wget util-linux python27 file gzip bzip2 unzip binutils bc jq ) |
|
|
else |
|
|
else |
|
|
array_deps_required=( curl wget util-linux python file gzip bzip2 unzip binutils bc ) |
|
|
array_deps_required=( curl wget util-linux python file gzip bzip2 unzip binutils bc jq ) |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
# All servers except ts3 require tmux |
|
|
# All servers except ts3 require tmux |
|
|