7 lines
213 B
Bash
7 lines
213 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# We don't set -u here, due to pypa/virtualenv#150
|
||
|
set -ex
|
||
|
|
||
|
ansible-playbook -i ../../inventory -e @../../integration_config.yml -e @../../cloud-config-aws.yml -v playbooks/full_test.yml "$@"
|