mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
355 B
Bash
16 lines
355 B
Bash
5 years ago
|
#!/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
|
||
5 years ago
|
|
||
|
# non-existent paths
|
||
|
for seed in foo foo/bar foo/bar/baz
|
||
|
do
|
||
|
ansible-playbook non_existent/play.yml -e "seed='${seed}'" "$@"
|
||
|
done
|