Updated from OpenStack Ansible Tests

Change-Id: I64eef06d5d077bf33f4d5916d770de513ed0a552
This commit is contained in:
OpenStack Proposal Bot 2017-11-10 20:08:46 +00:00
parent a016cb3444
commit a5a603556b

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