7 lines
175 B
Bash
7 lines
175 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
ansible testhost -i ../../inventory -m include_vars -a 'dir/inc.yml' "$@"
|
||
|
ansible testhost -i ../../inventory -m include_vars -a 'dir=dir' "$@"
|