2017-01-27 11:53:02 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
2020-06-26 16:13:28 -07:00
|
|
|
ANSIBLE_ROLES_PATH=../ ansible-playbook module_utils_basic_setcwd.yml -i ../../inventory "$@"
|
|
|
|
|
2020-06-29 18:02:03 -05: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 09:28:48 -05:00
|
|
|
ansible-playbook module_utils_test.yml -i ../../inventory -e output_dir="$OUTPUT_DIR" -v "$@"
|
2020-06-29 18:02:03 -05:00
|
|
|
|
2019-01-16 22:34:09 -08:00
|
|
|
ANSIBLE_MODULE_UTILS=other_mu_dir ansible-playbook module_utils_envvar.yml -i ../../inventory -v "$@"
|
2020-11-06 08:41:41 -06:00
|
|
|
|
|
|
|
ansible-playbook module_utils_common_dict_transformation.yml -i ../../inventory "$@"
|