Updated from OpenStack Ansible Tests
Change-Id: Ieddb042952c7b1e12b62116daf1d7f6c199f93b8
This commit is contained in:
parent
a5357ecac5
commit
1dffcac7d9
@ -54,8 +54,7 @@ python-pyasn1 [platform:dpkg platform:suse]
|
|||||||
python-openssl [platform:dpkg]
|
python-openssl [platform:dpkg]
|
||||||
python-ndg-httpsclient [platform:ubuntu !platform:ubuntu-14]
|
python-ndg-httpsclient [platform:ubuntu !platform:ubuntu-14]
|
||||||
python2-pyasn1 [platform:redhat]
|
python2-pyasn1 [platform:redhat]
|
||||||
python2-pyOpenSSL [platform:redhat !platform:fedora]
|
pyOpenSSL [platform:redhat]
|
||||||
pyOpenSSL [platform:fedora]
|
|
||||||
python-pyOpenSSL [platform:opensuseproject-42]
|
python-pyOpenSSL [platform:opensuseproject-42]
|
||||||
python2-pyOpenSSL [platform:suse !platform:opensuseproject-42]
|
python2-pyOpenSSL [platform:suse !platform:opensuseproject-42]
|
||||||
python-ndg_httpsclient [platform:redhat !platform:fedora]
|
python-ndg_httpsclient [platform:redhat !platform:fedora]
|
||||||
|
@ -35,9 +35,12 @@ source /etc/os-release || source /usr/lib/os-release
|
|||||||
install_pkg_deps() {
|
install_pkg_deps() {
|
||||||
pkg_deps="git"
|
pkg_deps="git"
|
||||||
|
|
||||||
|
# Prefer dnf over yum for CentOS.
|
||||||
|
which dnf &>/dev/null && RHT_PKG_MGR='dnf' || RHT_PKG_MGR='yum'
|
||||||
|
|
||||||
case ${ID,,} in
|
case ${ID,,} in
|
||||||
*suse*) pkg_mgr_cmd="zypper -n in" ;;
|
*suse*) pkg_mgr_cmd="zypper -n in" ;;
|
||||||
centos|rhel) pkg_mgr_cmd="yum install -y" ;;
|
centos|rhel) pkg_mgr_cmd="${RHT_PKG_MGR} install -y" ;;
|
||||||
fedora) pkg_mgr_cmd="dnf -y install" ;;
|
fedora) pkg_mgr_cmd="dnf -y install" ;;
|
||||||
ubuntu|debian) pkg_mgr_cmd="apt-get install -y" ;;
|
ubuntu|debian) pkg_mgr_cmd="apt-get install -y" ;;
|
||||||
*) echo "unsupported distribution: ${ID,,}"; exit 1 ;;
|
*) echo "unsupported distribution: ${ID,,}"; exit 1 ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user