ansible-freeipa/tests/sanity/runtest.sh
Thomas Woerner 6858e3d84f Install pip3 for ansible installation
Related: rhbz#1947473
2021-07-20 09:46:59 +02:00

10 lines
230 B
Bash

#!/bin/sh -eux
# Install python3 and python3-pip
dnf -y install python3 python3-pip
# Use pip3 to install ansible (2.9)
pip3 install "ansible>=2.9,<2.10"
ansible-playbook -i inventory install-server.yml -v --connection=local