Updated from OpenStack Ansible Tests

Change-Id: If0b6a487f5f5f860638a690e38c18c140a6a6ab2
This commit is contained in:
OpenStack Proposal Bot 2023-12-07 11:40:38 +00:00
parent ed85e8d2b1
commit 1797039543

View File

@ -53,7 +53,7 @@ source /etc/os-release || source /usr/lib/os-release
# Figure out the appropriate package install command
case ${ID,,} in
centos|rhel|fedora) pkg_mgr_cmd="dnf install -y" ;;
centos|rhel|fedora|rocky) pkg_mgr_cmd="dnf install -y" ;;
ubuntu|debian) pkg_mgr_cmd="apt-get install -y" ;;
*) echo "unsupported distribution: ${ID,,}"; exit 1 ;;
esac