Updated from OpenStack Ansible Tests

Change-Id: I5a22edac7f4722407c1545263fa1e82b24e035db
This commit is contained in:
OpenStack Proposal Bot 2017-11-10 13:15:55 +00:00
parent 4e7cb3441e
commit 066c95e656
1 changed files with 1 additions and 2 deletions

View File

@ -40,8 +40,7 @@ install_pkg_deps() {
case ${ID,,} in
*suse*) pkg_mgr_cmd="zypper -n in" ;;
centos|rhel) pkg_mgr_cmd="${RHT_PKG_MGR} install -y" ;;
fedora) pkg_mgr_cmd="dnf -y install" ;;
centos|rhel|fedora) pkg_mgr_cmd="${RHT_PKG_MGR} install -y" ;;
ubuntu|debian) pkg_mgr_cmd="apt-get install -y" ;;
*) echo "unsupported distribution: ${ID,,}"; exit 1 ;;
esac