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.
16 lines
378 B
Bash
16 lines
378 B
Bash
#!/bin/bash
|
|
# Wrap ansible-playbook, setting up some test of the test environment.
|
|
|
|
# Used by delegate_to.yml to ensure "sudo -E" preserves environment.
|
|
export I_WAS_PRESERVED=1
|
|
export MITOGEN_MAX_INTERPRETERS=3
|
|
|
|
if [ "${ANSIBLE_STRATEGY:0:7}" = "mitogen" ]
|
|
then
|
|
EXTRA='{"is_mitogen": true}'
|
|
else
|
|
EXTRA='{"is_mitogen": false}'
|
|
fi
|
|
|
|
exec ansible-playbook -e "$EXTRA" "$@"
|