summaryrefslogtreecommitdiff
path: root/test/integration/targets/ansible-pull/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-pull/runme.sh')
-rwxr-xr-xtest/integration/targets/ansible-pull/runme.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/integration/targets/ansible-pull/runme.sh b/test/integration/targets/ansible-pull/runme.sh
index 582e8099..b591b283 100755
--- a/test/integration/targets/ansible-pull/runme.sh
+++ b/test/integration/targets/ansible-pull/runme.sh
@@ -36,7 +36,8 @@ function pass_tests {
fi
# test for https://github.com/ansible/ansible/issues/13681
- if grep -E '127\.0\.0\.1.*ok' "${temp_log}"; then
+ # match play default output stats, was matching limit + docker
+ if grep -E '127\.0\.0\.1\s*: ok=' "${temp_log}"; then
cat "${temp_log}"
echo "Found host 127.0.0.1 in output. Only localhost should be present."
exit 1
@@ -86,5 +87,7 @@ ANSIBLE_CONFIG='' ansible-pull -d "${pull_dir}" -U "${repo_dir}" "$@" multi_play
pass_tests_multi
+ANSIBLE_CONFIG='' ansible-pull -d "${pull_dir}" -U "${repo_dir}" conn_secret.yml --connection-password-file "${repo_dir}/secret_connection_password" "$@"
+
# fail if we try do delete /var/tmp
ANSIBLE_CONFIG='' ansible-pull -d var/tmp -U "${repo_dir}" --purge "$@"