2d15811843
This will allow the test to work when HOST_PATTERN_MISMATCH is set to error.
7 lines
272 B
Bash
Executable file
7 lines
272 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ansible-playbook unicode.yml -i inventory -v -e 'extra_var=café' "$@"
|
|
# Test the start-at-task flag #9571
|
|
ANSIBLE_HOST_PATTERN_MISMATCH=warning ansible-playbook unicode.yml -i inventory -v --start-at-task '*¶' -e 'start_at_task=True' "$@"
|