~hopem/charms/trusty/openstack-dashboard/lp1518975

« back to all changes in this revision

Viewing changes to templates/juno/local_settings.py

  • Committer: billy.olsen at canonical
  • Date: 2015-11-10 23:25:29 UTC
  • Revision ID: billy.olsen@canonical.com-20151110232529-t29r4t6hxrxtg15x
[hennie-2,r=billy-olsen] Wrap endpoint type value in quotes.

Fixes-Bug: #1514919

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
# external to the OpenStack environment. The default is 'publicURL'.
252
252
#OPENSTACK_ENDPOINT_TYPE = "publicURL"
253
253
{% if primary_endpoint -%}
254
 
OPENSTACK_ENDPOINT_TYPE = {{ primary_endpoint }}
 
254
OPENSTACK_ENDPOINT_TYPE = "{{ primary_endpoint }}"
255
255
{% endif -%}
256
256
 
257
257
# SECONDARY_ENDPOINT_TYPE specifies the fallback endpoint type to use in the
261
261
# value should differ from OPENSTACK_ENDPOINT_TYPE if used.
262
262
#SECONDARY_ENDPOINT_TYPE = "publicURL"
263
263
{% if secondary_endpoint -%}
264
 
SECONDARY_ENDPOINT_TYPE = {{ secondary_endpoint }}
 
264
SECONDARY_ENDPOINT_TYPE = "{{ secondary_endpoint }}"
265
265
{% endif -%}
266
266
 
267
267
# The number of objects (Swift containers/objects or images) to display
626
626
# see https://docs.djangoproject.com/en/dev/ref/settings/.
627
627
ALLOWED_HOSTS = '*'
628
628
 
629
 
{{ settings|join('\n\n') }}
 
 
b'\\ No newline at end of file'
 
629
{{ settings|join('\n\n') }}