Browse Source
refactor(check): add epel as a requirement for centos (#2115)
pull/2118/head
Daniel Gibbs
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
lgsm/functions/check_deps.sh
|
|
@ -430,7 +430,9 @@ fn_deps_build_redhat(){ |
|
|
|
# LinuxGSM requirements |
|
|
|
## CentOS 6 |
|
|
|
if [ "${distroversion}" == "6" ]; then |
|
|
|
array_deps_required=( curl wget util-linux-ng python file gzip bzip2 unzip binutils bc jq ) |
|
|
|
array_deps_required=( epel-release curl wget util-linux-ng python file gzip bzip2 unzip binutils bc jq ) |
|
|
|
if [ "${distroversion}" == "7" ]; then |
|
|
|
array_deps_required=( epel-release curl wget util-linux python file gzip bzip2 unzip binutils bc jq ) |
|
|
|
elif [ "${distroid}" == "fedora" ]; then |
|
|
|
array_deps_required=( curl wget util-linux python2 file gzip bzip2 unzip binutils bc jq ) |
|
|
|
elif [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then |
|
|
|