mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
12 lines
212 B
Bash
Executable file
12 lines
212 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
source virtualenv.sh
|
|
|
|
pip install -U jinja2
|
|
|
|
ANSIBLE_ROLES_PATH=../
|
|
export ANSIBLE_ROLES_PATH
|
|
|
|
ansible-playbook -i ../../inventory main.yml -e @../../integration_config.yml -v "$@"
|