Commit 059a8789 by Kevin Falcone Committed by GitHub

Merge pull request #3343 from edx/jibsheet/docker-jenkins-workaround

Docker workaround for ansible provisioning.
parents d1f20ef8 c82af624
......@@ -25,6 +25,13 @@ env | grep -v AWS | grep -v ARN
export PYTHONUNBUFFERED=1
export BOTO_CONFIG=/var/lib/jenkins/${aws_account}.boto
# docker on OS-X includes your Mac's home directory in the socket path
# that SSH/Ansible uses for the control socket, pushing you over
# the 108 character limit.
if [ -f /.dockerenv ]; then
export ANSIBLE_SSH_CONTROL_PATH=/tmp/%%C
fi
run_ansible() {
if [[ "$VERBOSE" == "true" ]]; then
verbose_arg='-vvv'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment