Install pip3 for ansible installation

Related: rhbz#1947473
This commit is contained in:
Thomas Woerner 2021-07-20 09:46:59 +02:00
parent 7b8dbcae39
commit 6858e3d84f

View File

@ -1,5 +1,8 @@
#!/bin/sh -eux #!/bin/sh -eux
# Install python3 and python3-pip
dnf -y install python3 python3-pip
# Use pip3 to install ansible (2.9) # Use pip3 to install ansible (2.9)
pip3 install "ansible>=2.9,<2.10" pip3 install "ansible>=2.9,<2.10"