Fix default value for cacert_file
Common isn't exported from jinja in manila.conf,
instead we need to use cfg, as service_catalog is taken
from cfg.
Change-Id: I6fd1e88d6f8768347485d45c53d8c809f619cb11
Related-Prod: https://mirantis.jira.com/browse/PROD-18579
diff --git a/manila/files/pike/_auth_type_password.conf b/manila/files/pike/_auth_type_password.conf
index 83834b0..aa87679 100644
--- a/manila/files/pike/_auth_type_password.conf
+++ b/manila/files/pike/_auth_type_password.conf
@@ -2,7 +2,7 @@
auth_url = {{ _service_catalog.protocol }}://{{ _service_catalog.host }}:{{ _service_catalog.port }}/identity
{%- if _service_catalog.protocol == 'https' %}
-cafile={{ _service_catalog.get('cacert_file', common.cacert_file) }}
+cafile={{ _service_catalog.get('cacert_file', cfg.cacert_file) }}
{%- endif %}
{%- if _service_catalog.get('default_domain_id') %}