summaryrefslogtreecommitdiff
path: root/test/integration/targets/lookup_fileglob/runme.sh
blob: 1e0297c79d053e18606238a2e7c91d5feef52cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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

# non-existent paths
for seed in foo foo/bar foo/bar/baz
do
	ansible-playbook non_existent/play.yml -e "seed='${seed}'" "$@"
done