2017-01-27 20:53:02 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
2020-06-27 01:13:28 +02:00
|
|
|
ANSIBLE_ROLES_PATH=../ ansible-playbook module_utils_basic_setcwd.yml -i ../../inventory "$@"
|
|
|
|
|
2020-06-30 01:02:03 +02:00
|
|
|
# Keep the -vvvvv here. This acts as a test for testing that higher verbosity
|
|
|
|
# doesn't traceback with unicode in the custom module_utils directory path.
|
|
|
|
ansible-playbook module_utils_vvvvv.yml -i ../../inventory -vvvvv "$@"
|
|
|
|
|
2020-07-01 16:28:48 +02:00
|
|
|
ansible-playbook module_utils_test.yml -i ../../inventory -e output_dir="$OUTPUT_DIR" -v "$@"
|
2020-06-30 01:02:03 +02:00
|
|
|
|
2019-01-17 07:34:09 +01:00
|
|
|
ANSIBLE_MODULE_UTILS=other_mu_dir ansible-playbook module_utils_envvar.yml -i ../../inventory -v "$@"
|