summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_when_parent_is_dynamic/runme.sh
blob: fa7a34516acf9dea454d2096062e7776a5ae5144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

set -eux

ansible-playbook playbook.yml "$@" > output.log 2>&1 || true

if grep "task should always execute" output.log >/dev/null; then
  echo "Test passed (playbook failed with expected output, output not shown)."
  exit 0
fi

cat output.log
exit 1