diff options
author | Matt Clay <matt@mystile.com> | 2019-08-14 09:10:41 +0200 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2019-08-14 18:44:36 +0200 |
commit | 27ff8b1a8098683245948abc1dfd478e2e95065f (patch) | |
tree | 1346f554c3d909a18ebb85d51743d2ca05bbb89e /test/integration/targets/any_errors_fatal | |
parent | optparse_helpers: improve unit tests for version() (#59626) (diff) | |
download | ansible-27ff8b1a8098683245948abc1dfd478e2e95065f.tar.xz ansible-27ff8b1a8098683245948abc1dfd478e2e95065f.zip |
Clean up unused config usage in integration tests.
Diffstat (limited to 'test/integration/targets/any_errors_fatal')
-rwxr-xr-x | test/integration/targets/any_errors_fatal/runme.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/any_errors_fatal/runme.sh b/test/integration/targets/any_errors_fatal/runme.sh index edc14a4886..02cd499fd5 100755 --- a/test/integration/targets/any_errors_fatal/runme.sh +++ b/test/integration/targets/any_errors_fatal/runme.sh @@ -1,14 +1,14 @@ #!/usr/bin/env bash set -ux -ansible-playbook -i inventory -e @../../integration_config.yml "$@" play_level.yml| tee out.txt | grep 'any_errors_fatal_play_level_post_fail' +ansible-playbook -i inventory "$@" play_level.yml| tee out.txt | grep 'any_errors_fatal_play_level_post_fail' res=$? cat out.txt if [ "${res}" -eq 0 ] ; then exit 1 fi -ansible-playbook -i inventory -e @../../integration_config.yml "$@" on_includes.yml | tee out.txt | grep 'any_errors_fatal_this_should_never_be_reached' +ansible-playbook -i inventory "$@" on_includes.yml | tee out.txt | grep 'any_errors_fatal_this_should_never_be_reached' res=$? cat out.txt if [ "${res}" -eq 0 ] ; then @@ -17,7 +17,7 @@ fi set -ux -ansible-playbook -i inventory -e @../../integration_config.yml "$@" always_block.yml | tee out.txt | grep 'any_errors_fatal_always_block_start' +ansible-playbook -i inventory "$@" always_block.yml | tee out.txt | grep 'any_errors_fatal_always_block_start' res=$? cat out.txt exit $res |