test/cases: add support for RHEL 8.6 to test scripts

Signed-off-by: Achilleas Koutsou <achilleas@koutsou.net>
This commit is contained in:
Achilleas Koutsou 2021-10-06 11:49:23 +02:00 committed by Ondřej Budai
parent 97f9d02d92
commit be16a6e502
5 changed files with 12 additions and 16 deletions

View file

@ -401,6 +401,14 @@ case "$ID-$VERSION_ID" in
SSH_USER="cloud-user"
fi
;;
"rhel-8.6")
DISTRO="rhel-86"
if [[ "$CLOUD_PROVIDER" == "$CLOUD_PROVIDER_AWS" ]]; then
SSH_USER="ec2-user"
else
SSH_USER="cloud-user"
fi
;;
"rhel-8.5")
DISTRO="rhel-85"
if [[ "$CLOUD_PROVIDER" == "$CLOUD_PROVIDER_AWS" ]]; then