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.
ansible/test/integration/targets/fileglob/runme.sh

16 lines
355 B
Bash

#!/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