mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Fix packages variable
This commit is contained in:
parent
4f04c9562a
commit
916d343308
1 changed files with 3 additions and 3 deletions
|
@ -3864,7 +3864,7 @@ install_centos_git_deps() {
|
|||
__git_clone_and_checkout || return 1
|
||||
|
||||
|
||||
[ -z "${__PACKAGES}" ] && __PACKAGES=""
|
||||
__PACKAGES=""
|
||||
if [ -n "$_PY_EXE" ] && [ "$_PY_MAJOR_VERSION" -eq 3 ]; then
|
||||
_py=${_PY_EXE}
|
||||
if [ "$DISTRO_MAJOR_VERSION" -ge 8 ]; then
|
||||
|
@ -3889,9 +3889,9 @@ install_centos_git_deps() {
|
|||
|
||||
if [ "$DISTRO_MAJOR_VERSION" -ge 8 ]; then
|
||||
__install_tornado_pip ${_py} || return 1
|
||||
__PACKAGES="python3-m2crypto"
|
||||
__PACKAGES="${__PACKAGES} python3-m2crypto"
|
||||
else
|
||||
__PACKAGES="m2crypto ${PY_PKG_VER}-crypto"
|
||||
__PACKAGES="${__PACKAGES} m2crypto ${PY_PKG_VER}-crypto"
|
||||
fi
|
||||
|
||||
__PACKAGES="${__PACKAGES} python${PY_PKG_VER}-jinja2"
|
||||
|
|
Loading…
Add table
Reference in a new issue