6858e3d84f
Related: rhbz#1947473
10 lines
230 B
Bash
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
|