mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
fix py_exe default value
This commit is contained in:
parent
7d907d1fb7
commit
47fd79be4c
1 changed files with 2 additions and 2 deletions
|
@ -3771,9 +3771,9 @@ install_centos_git_deps() {
|
|||
install_centos_git() {
|
||||
if [ "$DISTRO_MAJOR_VERSION" -eq 5 ]; then
|
||||
_PYEXE=python2.6
|
||||
elif [ ${_PY_EXE:='None'} != 'None' ]; then
|
||||
elif [ "${_PY_EXE}" != "" ]; then
|
||||
_PYEXE=${_PY_EXE}
|
||||
echoinfo "Using the following python version: ${_PY-EXE} to install salt"
|
||||
echoinfo "Using the following python version: ${_PY_EXE} to install salt"
|
||||
else
|
||||
_PYEXE=python2
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue