Browse Source

standardise command if

pull/2697/head
Daniel Gibbs 5 years ago
parent
commit
736e55717f
  1. 36
      lgsm/functions/check_deps.sh
  2. 4
      lgsm/functions/command_dev_detect_deps.sh
  3. 2
      lgsm/functions/command_dev_detect_glibc.sh
  4. 2
      lgsm/functions/command_fastdl.sh
  5. 2
      lgsm/functions/command_monitor.sh
  6. 2
      lgsm/functions/command_stop.sh
  7. 2
      lgsm/functions/command_validate.sh
  8. 2
      lgsm/functions/core_dl.sh
  9. 10
      lgsm/functions/info_distro.sh
  10. 2
      lgsm/functions/info_stats.sh
  11. 2
      lgsm/functions/install_server_files.sh
  12. 2
      lgsm/functions/query_gamedig.sh
  13. 2
      lgsm/functions/update_steamcmd.sh
  14. 4
      linuxgsm.sh
  15. 4
      tests/tests_fctrserver.sh
  16. 2
      tests/tests_jc2server.sh
  17. 4
      tests/tests_mcserver.sh
  18. 4
      tests/tests_ts3server.sh

36
lgsm/functions/check_deps.sh

@ -160,7 +160,7 @@ fn_deps_detector(){
depstatus=1 depstatus=1
jquniversemissing=1 jquniversemissing=1
elif [ "${deptocheck}" == "mono-complete" ]; then elif [ "${deptocheck}" == "mono-complete" ]; then
if [ -n "$(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.
depstatus=0 depstatus=0
else else
@ -168,10 +168,10 @@ fn_deps_detector(){
depstatus=1 depstatus=1
monostatus=1 monostatus=1
fi fi
elif [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then elif [ "$(command -v dpkg-query 2>/dev/null)" ]; then
dpkg-query -W -f='${Status}' "${deptocheck}" 2>/dev/null | grep -q -P '^install ok installed' dpkg-query -W -f='${Status}' "${deptocheck}" 2>/dev/null | grep -q -P '^install ok installed'
depstatus=$? depstatus=$?
elif [ -n "$(command -v rpm 2>/dev/null)" ]; then elif [ "$(command -v rpm 2>/dev/null)" ]; then
rpm -q "${deptocheck}" > /dev/null 2>&1 rpm -q "${deptocheck}" > /dev/null 2>&1
depstatus=$? depstatus=$?
fi fi
@ -212,15 +212,15 @@ fn_deps_email(){
array_deps_required+=( exim4 ) array_deps_required+=( exim4 )
elif [ -d /etc/sendmail ]; then elif [ -d /etc/sendmail ]; then
array_deps_required+=( sendmail ) array_deps_required+=( sendmail )
elif [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then elif [ "$(command -v dpkg-query 2>/dev/null)" ]; then
array_deps_required+=( mailutils postfix ) array_deps_required+=( mailutils postfix )
elif [ -n "$(command -v rpm 2>/dev/null)" ]; then elif [ "$(command -v rpm 2>/dev/null)" ]; then
array_deps_required+=( mailx postfix ) array_deps_required+=( mailx postfix )
fi fi
else else
if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then if [ "$(command -v dpkg-query 2>/dev/null)" ]; then
array_deps_required+=( mailutils postfix ) array_deps_required+=( mailutils postfix )
elif [ -n "$(command -v rpm 2>/dev/null)" ]; then elif [ "$(command -v rpm 2>/dev/null)" ]; then
array_deps_required+=( mailx postfix ) array_deps_required+=( mailx postfix )
fi fi
fi fi
@ -255,13 +255,13 @@ fn_found_missing_deps(){
echo -en "...\r" echo -en "...\r"
sleep 1 sleep 1
echo -en " \r" echo -en " \r"
if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then if [ "$(command -v dpkg-query 2>/dev/null)" ]; then
cmd="sudo dpkg --add-architecture i386; sudo apt update; sudo apt -y install ${array_deps_missing[@]}" cmd="sudo dpkg --add-architecture i386; sudo apt update; sudo apt -y install ${array_deps_missing[@]}"
eval "${cmd}" eval "${cmd}"
elif [ -n "$(command -v dnf 2>/dev/null)" ]; then elif [ "$(command -v dnf 2>/dev/null)" ]; then
cmd="sudo dnf -y install ${array_deps_missing[@]}" cmd="sudo dnf -y install ${array_deps_missing[@]}"
eval "${cmd}" eval "${cmd}"
elif [ -n "$(command -v yum 2>/dev/null)" ]; then elif [ "$(command -v yum 2>/dev/null)" ]; then
cmd="sudo yum -y install ${array_deps_missing[@]}" cmd="sudo yum -y install ${array_deps_missing[@]}"
eval "${cmd}" eval "${cmd}"
fi fi
@ -271,11 +271,11 @@ fn_found_missing_deps(){
echo -e "" echo -e ""
fn_print_warning_nl "Manually install dependencies." fn_print_warning_nl "Manually install dependencies."
fn_script_log_warn "Manually install dependencies." fn_script_log_warn "Manually install dependencies."
if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then if [ "$(command -v dpkg-query 2>/dev/null)" ]; then
echo -e " sudo dpkg --add-architecture i386; sudo apt update; sudo apt install ${array_deps_missing[@]}" echo -e " sudo dpkg --add-architecture i386; sudo apt update; sudo apt install ${array_deps_missing[@]}"
elif [ -n "$(command -v dnf 2>/dev/null)" ]; then elif [ "$(command -v dnf 2>/dev/null)" ]; then
echo -e " sudo dnf install ${array_deps_missing[@]}" echo -e " sudo dnf install ${array_deps_missing[@]}"
elif [ -n "$(command -v yum 2>/dev/null)" ]; then elif [ "$(command -v yum 2>/dev/null)" ]; then
echo -e " sudo yum install ${array_deps_missing[@]}" echo -e " sudo yum install ${array_deps_missing[@]}"
fi fi
if [ "${steamcmdfail}" ]; then if [ "${steamcmdfail}" ]; then
@ -292,11 +292,11 @@ fn_found_missing_deps(){
echo -e "" echo -e ""
fn_print_warning_nl "$(whoami) does not have sudo access. Manually install dependencies." fn_print_warning_nl "$(whoami) does not have sudo access. Manually install dependencies."
fn_script_log_warn "$(whoami) does not have sudo access. Manually install dependencies." fn_script_log_warn "$(whoami) does not have sudo access. Manually install dependencies."
if [ -n "$(command -v dpkg-query 2>/dev/null)" ]; then if [ "$(command -v dpkg-query 2>/dev/null)" ]; then
echo -e " sudo dpkg --add-architecture i386; sudo apt update; sudo apt install ${array_deps_missing[@]}" echo -e " sudo dpkg --add-architecture i386; sudo apt update; sudo apt install ${array_deps_missing[@]}"
elif [ -n "$(command -v dnf 2>/dev/null)" ]; then elif [ "$(command -v dnf 2>/dev/null)" ]; then
echo -e " sudo dnf install ${array_deps_missing[@]}" echo -e " sudo dnf install ${array_deps_missing[@]}"
elif [ -n "$(command -v yum 2>/dev/null)" ]; then elif [ "$(command -v yum 2>/dev/null)" ]; then
echo -e " sudo yum install ${array_deps_missing[@]}" echo -e " sudo yum install ${array_deps_missing[@]}"
fi fi
if [ "${steamcmdfail}" ]; then if [ "${steamcmdfail}" ]; then
@ -337,7 +337,7 @@ fn_deps_build_debian(){
# LinuxGSM requirements. # LinuxGSM requirements.
array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python3 tar bzip2 gzip unzip binutils bc jq ) array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python3 tar bzip2 gzip unzip binutils bc jq )
if [ -n "$(command -v tmux 2>/dev/null)" ]; then if [ "$(command -v tmux 2>/dev/null)" ]; then
tmuxcheck=1 # Added for users compiling tmux from source to bypass check. tmuxcheck=1 # Added for users compiling tmux from source to bypass check.
else else
array_deps_required+=( tmux ) array_deps_required+=( tmux )
@ -461,7 +461,7 @@ fn_deps_build_redhat(){
fi fi
# All servers except ts3 require tmux. # All servers except ts3 require tmux.
if [ -n "$(command -v tmux 2>/dev/null)" ]; then if [ "$(command -v tmux 2>/dev/null)" ]; then
# Added for users compiling tmux from source to bypass check. # Added for users compiling tmux from source to bypass check.
tmuxcheck=1 tmuxcheck=1
else else

4
lgsm/functions/command_dev_detect_deps.sh

@ -13,9 +13,9 @@ echo -e "Dependencies Checker"
echo -e "=================================" echo -e "================================="
echo -e "Checking directory: " echo -e "Checking directory: "
echo -e "${serverfiles}" echo -e "${serverfiles}"
if [ -n "$(command -v eu-readelf 2>/dev/null)" ]; then if [ "$(command -v eu-readelf 2>/dev/null)" ]; then
readelf=eu-readelf readelf=eu-readelf
elif [ -n "$(command -v readelf 2>/dev/null)" ]; then elif [ "$(command -v readelf 2>/dev/null)" ]; then
readelf=readelf readelf=readelf
else else
echo -e "readelf/eu-readelf not installed" echo -e "readelf/eu-readelf not installed"

2
lgsm/functions/command_dev_detect_glibc.sh

@ -13,7 +13,7 @@ echo -e "================================="
echo -e "glibc Requirements Checker" echo -e "glibc Requirements Checker"
echo -e "=================================" echo -e "================================="
if [ -z "$(command -v objdump)" ]; then if [ ! "$(command -v objdump)" ]; then
fn_print_failure_nl "objdump is missing" fn_print_failure_nl "objdump is missing"
fn_script_log_fatal "objdump is missing" fn_script_log_fatal "objdump is missing"
core_exit.sh core_exit.sh

2
lgsm/functions/command_fastdl.sh

@ -23,7 +23,7 @@ luafastdlfile="lgsm_cl_force_fastdl.lua"
luafastdlfullpath="${luasvautorundir}/${luafastdlfile}" luafastdlfullpath="${luasvautorundir}/${luafastdlfile}"
# Check if bzip2 is installed. # Check if bzip2 is installed.
if [ -z "$(command -v bzip2 2>/dev/null)" ]; then if [ ! "$(command -v bzip2 2>/dev/null)" ]; then
fn_print_fail "bzip2 is not installed" fn_print_fail "bzip2 is not installed"
fn_script_log_fatal "bzip2 is not installed" fn_script_log_fatal "bzip2 is not installed"
core_exit.sh core_exit.sh

2
lgsm/functions/command_monitor.sh

@ -211,7 +211,7 @@ fn_monitor_loop(){
do do
# Will check if gamedig is installed and bypass if not. # Will check if gamedig is installed and bypass if not.
if [ "${querymethod}" == "gamedig" ]; then if [ "${querymethod}" == "gamedig" ]; then
if [ -n "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; then if [ "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; then
if [ -z "${monitorpass}" ]; then if [ -z "${monitorpass}" ]; then
fn_monitor_query fn_monitor_query
fi fi

2
lgsm/functions/command_stop.sh

@ -126,7 +126,7 @@ fn_stop_graceful_sdtd(){
fn_script_log_info "Graceful: telnet" fn_script_log_info "Graceful: telnet"
if [ "${telnetenabled}" == "false" ]; then if [ "${telnetenabled}" == "false" ]; then
fn_print_info_nl "Graceful: telnet: DISABLED: Enable in ${servercfg}" fn_print_info_nl "Graceful: telnet: DISABLED: Enable in ${servercfg}"
elif [ -n "$(command -v expect 2>/dev/null)" ]; then elif [ "$(command -v expect 2>/dev/null)" ]; then
# Tries to shutdown with both localhost and server IP. # Tries to shutdown with both localhost and server IP.
for telnetip in 127.0.0.1 ${ip}; do for telnetip in 127.0.0.1 ${ip}; do
fn_print_dots "Graceful: telnet: ${telnetip}:${telnetport}" fn_print_dots "Graceful: telnet: ${telnetip}:${telnetport}"

2
lgsm/functions/command_validate.sh

@ -18,7 +18,7 @@ fn_validation(){
cd "${steamcmddir}" || exit cd "${steamcmddir}" || exit
# Detects if unbuffer command is available for 32 bit distributions only. # Detects if unbuffer command is available for 32 bit distributions only.
info_distro.sh info_distro.sh
if [ -n "$(command -v stdbuf)" ]&&[ "${arch}" != "x86_64" ]; then if [ "$(command -v stdbuf)" ]&&[ "${arch}" != "x86_64" ]; then
unbuffer="stdbuf -i0 -o0 -e0" unbuffer="stdbuf -i0 -o0 -e0"
fi fi

2
lgsm/functions/core_dl.sh

@ -256,7 +256,7 @@ fn_update_function(){
} }
# Check that curl is installed # Check that curl is installed
if [ -z "$(command -v curl 2>/dev/null)" ]; then if [ ! "$(command -v curl 2>/dev/null)" ]; then
echo -e "[ FAIL ] Curl is not installed" echo -e "[ FAIL ] Curl is not installed"
exit 1 exit 1
fi fi

10
lgsm/functions/info_distro.sh

@ -32,7 +32,7 @@ do
distroversion=$(grep VERSION_ID /etc/os-release | sed 's/VERSION_ID=//g' | sed 's/\"//g') distroversion=$(grep VERSION_ID /etc/os-release | sed 's/VERSION_ID=//g' | sed 's/\"//g')
distroid=$(grep ID /etc/os-release | grep -v _ID | grep -v ID_ | sed 's/ID=//g' | sed 's/\"//g') distroid=$(grep ID /etc/os-release | grep -v _ID | grep -v ID_ | sed 's/ID=//g' | sed 's/\"//g')
distrocodename=$(grep VERSION_CODENAME /etc/os-release | sed 's/VERSION_CODENAME=//g' | sed 's/\"//g') distrocodename=$(grep VERSION_CODENAME /etc/os-release | sed 's/VERSION_CODENAME=//g' | sed 's/\"//g')
elif [ -n "$(command -v lsb_release 2>/dev/null)" ]&&[ "${distro_info}" == "lsb_release" ]; then elif [ "$(command -v lsb_release 2>/dev/null)" ]&&[ "${distro_info}" == "lsb_release" ]; then
if [ -z "${distroname}" ];then if [ -z "${distroname}" ];then
distroname=$(lsb_release -sd) distroname=$(lsb_release -sd)
elif [ -z "${distroversion}" ];then elif [ -z "${distroversion}" ];then
@ -42,7 +42,7 @@ do
elif [ -z "${distrocodename}" ];then elif [ -z "${distrocodename}" ];then
distrocodename=$(lsb_release -sc) distrocodename=$(lsb_release -sc)
fi fi
elif [ -n "$(command -v hostnamectl 2>/dev/null)" ]&&[ "${distro_info}" == "hostnamectl" ]; then elif [ "$(command -v hostnamectl 2>/dev/null)" ]&&[ "${distro_info}" == "hostnamectl" ]; then
if [ -z "${distroname}" ];then if [ -z "${distroname}" ];then
distroname=$(hostnamectl | grep "Operating System" | sed 's/Operating System: //g') distroname=$(hostnamectl | grep "Operating System" | sed 's/Operating System: //g')
fi fi
@ -71,7 +71,7 @@ glibcversion=$(ldd --version | sed -n '1s/.* //p')
## tmux version ## tmux version
# e.g: tmux 1.6 # e.g: tmux 1.6
if [ -z "$(command -V tmux 2>/dev/null)" ]; then if [ ! "$(command -V tmux 2>/dev/null)" ]; then
tmuxv="${red}NOT INSTALLED!${default}" tmuxv="${red}NOT INSTALLED!${default}"
else else
if [ "$(tmux -V | sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" -lt "16" ]; then if [ "$(tmux -V | sed "s/tmux //" | sed -n '1 p' | tr -cd '[:digit:]')" -lt "16" ]; then
@ -107,7 +107,7 @@ fi
# Available RAM and swap. # Available RAM and swap.
# Newer distros can use numfmt to give more accurate results. # Newer distros can use numfmt to give more accurate results.
if [ -n "$(command -v numfmt 2>/dev/null)" ]; then if [ "$(command -v numfmt 2>/dev/null)" ]; then
# Issue #2005 - Kernel 3.14+ contains MemAvailable which should be used. All others will be calculated. # Issue #2005 - Kernel 3.14+ contains MemAvailable which should be used. All others will be calculated.
# get the raw KB values of these fields. # get the raw KB values of these fields.
@ -252,7 +252,7 @@ else
fi fi
# Steam Master Server - checks if detected by master server. # Steam Master Server - checks if detected by master server.
if [ -n "$(command -v jq 2>/dev/null)" ]; then if [ "$(command -v jq 2>/dev/null)" ]; then
if [ "${ip}" ]&&[ "${port}" ]; then if [ "${ip}" ]&&[ "${port}" ]; then
if [ "${steammaster}" == "true" ]; then if [ "${steammaster}" == "true" ]; then
masterserver=$(curl -m 3 -s 'https://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr='${ip}':'${port}'&format=json' | jq '.response.servers[]|.addr' | wc -l) masterserver=$(curl -m 3 -s 'https://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr='${ip}':'${port}'&format=json' | jq '.response.servers[]|.addr' | wc -l)

2
lgsm/functions/info_stats.sh

@ -10,7 +10,7 @@ info_distro.sh
if [ ! -f "${datadir}/uuid.txt" ];then if [ ! -f "${datadir}/uuid.txt" ];then
mkdir -p "${datadir}" mkdir -p "${datadir}"
touch "${datadir}/uuid.txt" touch "${datadir}/uuid.txt"
if [ -n "$(command -v uuidgen 2>/dev/null)" ]; then if [ "$(command -v uuidgen 2>/dev/null)" ]; then
uuidgen > "${datadir}/uuid.txt" uuidgen > "${datadir}/uuid.txt"
else else
cat /proc/sys/kernel/random/uuid > "${datadir}/uuid.txt" cat /proc/sys/kernel/random/uuid > "${datadir}/uuid.txt"

2
lgsm/functions/install_server_files.sh

@ -98,7 +98,7 @@ fn_install_server_files_steamcmd(){
# Detects if unbuffer command is available for 32 bit distributions only. # Detects if unbuffer command is available for 32 bit distributions only.
info_distro.sh info_distro.sh
if [ -n "$(command -v stdbuf 2>/dev/null)" ]&&[ "${arch}" != "x86_64" ]; then if [ "$(command -v stdbuf 2>/dev/null)" ]&&[ "${arch}" != "x86_64" ]; then
unbuffer="stdbuf -i0 -o0 -e0" unbuffer="stdbuf -i0 -o0 -e0"
fi fi

2
lgsm/functions/query_gamedig.sh

@ -6,7 +6,7 @@
# https://github.com/sonicsnes/node-gamedig # https://github.com/sonicsnes/node-gamedig
# Check if gamedig and jq are installed. # Check if gamedig and jq are installed.
if [ -n "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; then if [ "$(command -v gamedig 2>/dev/null)" ]&&[ "$(command -v jq 2>/dev/null)" ]; then
# will bypass query if server offline. # will bypass query if server offline.
check_status.sh check_status.sh

2
lgsm/functions/update_steamcmd.sh

@ -13,7 +13,7 @@ fn_update_steamcmd_dl(){
# Detects if unbuffer command is available for 32 bit distributions only. # Detects if unbuffer command is available for 32 bit distributions only.
info_distro.sh info_distro.sh
if [ -n "$(command -v stdbuf)" ]&&[ "${arch}" != "x86_64" ]; then if [ "$(command -v stdbuf)" ]&&[ "${arch}" != "x86_64" ]; then
unbuffer="stdbuf -i0 -o0 -e0" unbuffer="stdbuf -i0 -o0 -e0"
fi fi

4
linuxgsm.sh

@ -72,7 +72,7 @@ fn_bootstrap_fetch_file(){
fi fi
# If curl exists download file. # If curl exists download file.
if [ -n "$(command -v curl 2>/dev/null)" ]; then if [ "$(command -v curl 2>/dev/null)" ]; then
# Trap to remove part downloaded files. # Trap to remove part downloaded files.
echo -en " fetching ${local_filename}...\c" echo -en " fetching ${local_filename}...\c"
curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1)
@ -192,7 +192,7 @@ fn_install_menu() {
options=$4 options=$4
# Get menu command. # Get menu command.
for menucmd in whiptail dialog bash; do for menucmd in whiptail dialog bash; do
if [ -x "$(command -v "${menucmd}")" ]; then if [ "$(command -v "${menucmd}")" ]; then
menucmd=$(command -v "${menucmd}") menucmd=$(command -v "${menucmd}")
break break
fi fi

4
tests/tests_fctrserver.sh

@ -81,7 +81,7 @@ fn_bootstrap_fetch_file(){
fi fi
# If curl exists download file. # If curl exists download file.
if [ -n "$(command -v curl 2>/dev/null)" ]; then if [ "$(command -v curl 2>/dev/null)" ]; then
# Trap to remove part downloaded files. # Trap to remove part downloaded files.
echo -en " fetching ${local_filename}...\c" echo -en " fetching ${local_filename}...\c"
curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1)
@ -201,7 +201,7 @@ fn_install_menu() {
options=$4 options=$4
# Get menu command. # Get menu command.
for menucmd in whiptail dialog bash; do for menucmd in whiptail dialog bash; do
if [ -x "$(command -v "${menucmd}")" ]; then if [ "$(command -v "${menucmd}")" ]; then
menucmd=$(command -v "${menucmd}") menucmd=$(command -v "${menucmd}")
break break
fi fi

2
tests/tests_jc2server.sh

@ -201,7 +201,7 @@ fn_install_menu() {
options=$4 options=$4
# Get menu command. # Get menu command.
for menucmd in whiptail dialog bash; do for menucmd in whiptail dialog bash; do
if [ -x "$(command -v "${menucmd}")" ]; then if [ "$(command -v "${menucmd}")" ]; then
menucmd=$(command -v "${menucmd}") menucmd=$(command -v "${menucmd}")
break break
fi fi

4
tests/tests_mcserver.sh

@ -81,7 +81,7 @@ fn_bootstrap_fetch_file(){
fi fi
# If curl exists download file. # If curl exists download file.
if [ -n "$(command -v curl 2>/dev/null)" ]; then if [ "$(command -v curl 2>/dev/null)" ]; then
# Trap to remove part downloaded files. # Trap to remove part downloaded files.
echo -en " fetching ${local_filename}...\c" echo -en " fetching ${local_filename}...\c"
curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1)
@ -201,7 +201,7 @@ fn_install_menu() {
options=$4 options=$4
# Get menu command. # Get menu command.
for menucmd in whiptail dialog bash; do for menucmd in whiptail dialog bash; do
if [ -x "$(command -v "${menucmd}")" ]; then if [ "$(command -v "${menucmd}")" ]; then
menucmd=$(command -v "${menucmd}") menucmd=$(command -v "${menucmd}")
break break
fi fi

4
tests/tests_ts3server.sh

@ -81,7 +81,7 @@ fn_bootstrap_fetch_file(){
fi fi
# If curl exists download file. # If curl exists download file.
if [ -n "$(command -v curl 2>/dev/null)" ]; then if [ "$(command -v curl 2>/dev/null)" ]; then
# Trap to remove part downloaded files. # Trap to remove part downloaded files.
echo -en " fetching ${local_filename}...\c" echo -en " fetching ${local_filename}...\c"
curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1) curlcmd=$(curl -s --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}" 2>&1)
@ -201,7 +201,7 @@ fn_install_menu() {
options=$4 options=$4
# Get menu command. # Get menu command.
for menucmd in whiptail dialog bash; do for menucmd in whiptail dialog bash; do
if [ -x "$(command -v "${menucmd}")" ]; then if [ "$(command -v "${menucmd}")" ]; then
menucmd=$(command -v "${menucmd}") menucmd=$(command -v "${menucmd}")
break break
fi fi

Loading…
Cancel
Save