From 2070747876bbaa3a1c268dfbef491e90621f885b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Fri, 1 Oct 2021 09:20:06 +0200 Subject: [PATCH] ci: install ansible-core instead of ansible for EL9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ansible-core no longer provides ansible so we need to require specifically ansible-core. Signed-off-by: Ondřej Budai --- tools/provision.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/provision.sh b/tools/provision.sh index 67c71a136..564e5aa65 100755 --- a/tools/provision.sh +++ b/tools/provision.sh @@ -20,7 +20,7 @@ elif [[ $ID == rhel || $ID == centos ]] && [[ ${VERSION_ID%.*} == 9 ]]; then sudo dnf copr enable -y copr.devel.redhat.com/osbuild-team/epel-el9 "rhel-9.dev-$ARCH" # koji is not available yet apparently # jmespath required for json_query - sudo dnf install -y ansible python3-jmespath + sudo dnf install -y ansible-core python3-jmespath # json_query filter, used in our ansible playbooks, was moved to the # 'community.general' collection