From 859b5df1d4cffb04c3717af2773556f02b8fb82e Mon Sep 17 00:00:00 2001 From: Nicklas Laine Overgaard Date: Tue, 5 Sep 2017 16:29:11 +0200 Subject: [PATCH] Fix exported SSL_CERT_FILE variable (#28968) The variable was pointing to a file with a `.cer` extension but the curl command downloads a `.pem` file which makes executions of the bash script fail --- docs/docsite/rst/guide_gce.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/guide_gce.rst b/docs/docsite/rst/guide_gce.rst index 4c891645c57..fda21c2946e 100644 --- a/docs/docsite/rst/guide_gce.rst +++ b/docs/docsite/rst/guide_gce.rst @@ -168,7 +168,7 @@ For the following use case, let's use this small shell script as a wrapper. exit 1 fi - export SSL_CERT_FILE=$(pwd)/cacert.cer + export SSL_CERT_FILE=$(pwd)/cacert.pem export ANSIBLE_HOST_KEY_CHECKING=False if [[ ! -f "$SSL_CERT_FILE" ]]; then