12 lines
302 B
Bash
12 lines
302 B
Bash
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
: ${ANSIBLE_MAJOR_VERSION:=2.12}
|
|
|
|
/usr/bin/python -m pip uninstall -y ansible ansible-base ansible-core
|
|
/usr/bin/python -m pip install -r tests/requirements-${ANSIBLE_MAJOR_VERSION}.txt
|
|
mkdir -p /.ssh
|
|
mkdir -p cluster-dump
|
|
mkdir -p $HOME/.ssh
|
|
ansible-playbook --version
|