mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-14 21:19:12 -07: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 "$@"
|