d3cab602a5
* Fix fileglob when using 'file*' vs 'stuff/file*' when not having dir in glob, files/ subdir was being ignored. * tests for fileglob
9 lines
224 B
Bash
Executable file
9 lines
224 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
# fun multilevel finds
|
|
for seed in play_adj play_adj_subdir somepath/play_adj_subsubdir in_role otherpath/in_role_subdir
|
|
do
|
|
ansible-playbook find_levels/play.yml -e "seed='${seed}'" "$@"
|
|
done
|