f7078c1f8f
Change: - In certain situations, such as when the input string contains null bytes (\0), syslog.syslog will throw a TypeError. Handle that and fail_json instead. Test Plan: - New test - ansible-test --docker centos[68] (for py2 and py3 respectively) Tickets: - Refs #70269 Signed-off-by: Rick Elrod <rick@elrod.me>
13 lines
549 B
Bash
Executable file
13 lines
549 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ANSIBLE_ROLES_PATH=../ ansible-playbook module_utils_basic_setcwd.yml -i ../../inventory "$@"
|
|
|
|
# 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 "$@"
|
|
|
|
ansible-playbook module_utils_test.yml -i ../../inventory -e output_dir="$OUTPUT_DIR" -v "$@"
|
|
|
|
ANSIBLE_MODULE_UTILS=other_mu_dir ansible-playbook module_utils_envvar.yml -i ../../inventory -v "$@"
|