1#!/usr/local/bin/bash
2
3set -eux
4
5export ANSIBLE_TEST_PREFER_VENV=1  # see https://github.com/ansible/ansible/pull/73000#issuecomment-757012395; can be removed once Ansible 2.9 and ansible-base 2.10 support has been dropped
6source virtualenv.sh
7
8# Requirements have to be installed prior to running ansible-playbook
9# because plugins and requirements are loaded before the task runs
10
11pip install jc
12
13ANSIBLE_ROLES_PATH=../ ansible-playbook runme.yml "$@"
14