Browse Source

Merge pull request #1229 from ChaosMTA/1228

Adds unzip to required dependencies for LGSM
pull/1279/head
Daniel Gibbs 8 years ago
committed by GitHub
parent
commit
104d773646
  1. 6
      lgsm/functions/check_deps.sh

6
lgsm/functions/check_deps.sh

@ -147,7 +147,7 @@ if [ -n "$(command -v dpkg-query)" ]; then
array_deps_missing=()
# LGSM requirements
array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip )
array_deps_required=( curl wget ca-certificates file bsdmainutils util-linux python bzip2 gzip unzip )
# All servers except ts3 require tmux
if [ "${gamename}" != "TeamSpeak 3" ]; then
@ -227,9 +227,9 @@ elif [ -n "$(command -v yum)" ]; then
# LGSM requirements
if [ "${distroversion}" == "6" ]; then
array_deps_required=( curl wget util-linux-ng python file gzip bzip2 )
array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip )
else
array_deps_required=( curl wget util-linux python file gzip bzip2 )
array_deps_required=( curl wget util-linux python file gzip bzip2 unzip )
fi
# All servers except ts3 require tmux

Loading…
Cancel
Save