mirror of
https://github.com/ansible/ansible.git
synced 2026-07-28 08:05:22 +02:00
* avoid getting delegated vars w/o inventory host fixes #75512 In the case of imports, we don't have a host, so getting host vars for the delegated host makes no sense and should be avoided. * also avoid error on vars_files with per host vars * test * testing given case * oops
10 lines
190 B
Bash
Executable File
10 lines
190 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ANSIBLE_ROLES_PATH=../ ansible-playbook setup.yml
|
|
|
|
python test-cli.py
|
|
|
|
ansible-playbook test_syntax/syntax_check.yml --syntax-check -i ../../inventory -v "$@"
|