From a74ea88f325290c689c46deb5511da388cd8194e Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Thu, 23 Jul 2015 16:56:51 +0000 Subject: [PATCH] updating conditional in phabricator conf to work with empty string for ssl intermediate file --- roles/phabricator/templates/phabricator.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/phabricator/templates/phabricator.conf.j2 b/roles/phabricator/templates/phabricator.conf.j2 index 67f933ce83..c3cf2612a9 100644 --- a/roles/phabricator/templates/phabricator.conf.j2 +++ b/roles/phabricator/templates/phabricator.conf.j2 @@ -45,7 +45,7 @@ # when the CA certificates are directly appended to the server # certificate for convinience. #SSLCertificateChainFile /etc/pki/tls/certs/server-chain.crt - {% if sslintermediatecertfile is defined %} + {% if sslintermediatecertfile is defined and sslintermediatecertfile != '' %} SSLCertificateChainFile /etc/pki/tls/certs/{{ sslintermediatecertfile }} {% endif %}