From 63dffc5bb5034e75096fd6413cf99cf7304877ee Mon Sep 17 00:00:00 2001 From: Frisasky Date: Sun, 13 Oct 2019 21:21:44 +0800 Subject: [PATCH] feat(install): centos 8 python dependency checking (#2546) --- lgsm/functions/check_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_deps.sh b/lgsm/functions/check_deps.sh index 359795f31..8cf1a3de4 100644 --- a/lgsm/functions/check_deps.sh +++ b/lgsm/functions/check_deps.sh @@ -448,11 +448,11 @@ fn_deps_build_redhat(){ # LinuxGSM requirements. # CentOS if [ "${distroversion}" == "6" ]; then - array_deps_required=( epel-release curl wget util-linux-ng python3 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 ) elif [ "${distroversion}" == "7" ]; then array_deps_required=( epel-release curl wget util-linux python3 file gzip bzip2 unzip binutils bc jq ) elif [ "${distroversion}" == "8" ]; then - array_deps_required=( epel-release curl wget util-linux python3 file gzip bzip2 unzip binutils bc jq ) + array_deps_required=( epel-release curl wget util-linux python36 file gzip bzip2 unzip binutils bc jq ) elif [ "${distroid}" == "fedora" ]; then array_deps_required=( curl wget util-linux python3 file gzip bzip2 unzip binutils bc jq ) elif [[ "${distroname}" == *"Amazon Linux AMI"* ]]; then