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/ansible_log/runme.sh

24 lines
502 B
Bash

#!/usr/bin/env bash
set -eux
ALOG=${OUTPUT_DIR}/ansible_log_test.log
ansible-playbook logit.yml
[ ! -f "${ALOG}" ]
ANSIBLE_LOG_PATH=${ALOG} ansible-playbook logit.yml
[ -f "${ALOG}" ]
grep -q 'ping' "${ALOG}"
rm "${ALOG}"
# inline grep should fail if EXEC was present
set +e
ANSIBLE_LOG_PATH=${ALOG} ANSIBLE_LOG_VERBOSITY=3 ansible-playbook -v logit.yml | tee /dev/stderr | grep -q EXEC
rc=$?
set -e
if [ "$rc" == "0" ]; then
false # fail if we found EXEC in stdout
fi
grep -q EXEC "${ALOG}"