From e7653af7db61d6e8ea7d3a428030e7f47ad4c90e Mon Sep 17 00:00:00 2001 From: Josh Rabinowitz Date: Mon, 16 Apr 2018 12:52:19 -0400 Subject: [PATCH] fix error: 'failed to validate the SSL certificate for api.github.com:443' that we see only with 'gnupg-git-[debian|ubuntu]' kitchen configs with ansible < 2.5.0.0 --- .ci/ansible-setup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/ansible-setup.sh b/.ci/ansible-setup.sh index a06ebf97..55170776 100755 --- a/.ci/ansible-setup.sh +++ b/.ci/ansible-setup.sh @@ -11,12 +11,12 @@ AVM_VERSION="v1.0.0" export ANSIBLE_VERSIONS_0="2.3.1.0" export INSTALL_TYPE_0="pip" export ANSIBLE_LABEL_0="v2.3" -## Install Ansible 2.4.1 using pip and label it 'v2.4' -export ANSIBLE_VERSIONS_1="2.4.1.0" +## Install Ansible 2.5.X using pip and label it 'v2.5' +export ANSIBLE_VERSIONS_1="2.5.0.0" export INSTALL_TYPE_1="pip" -export ANSIBLE_LABEL_1="v2.4" +export ANSIBLE_LABEL_1="v2.5" # Whats the default version -export ANSIBLE_DEFAULT_VERSION="v2.4" +export ANSIBLE_DEFAULT_VERSION="v2.5" ## Create a temp dir to download avm avm_dir="$(mktemp -d 2> /dev/null || mktemp -d -t 'mytmpdir')"