From c16472bbc1f9fc701eae3137c526aac800525d36 Mon Sep 17 00:00:00 2001 From: Jimmy McCrory Date: Wed, 14 Jun 2017 16:29:46 -0700 Subject: [PATCH] Remove inline comments from example config Inline comments are not automatically removed when config options are parsed. This can lead to difficult to debug errors if the example config is used directly. Change-Id: I23ecd32a0f14a7d8ba36a7cf17c47ac3814e7f19 --- etc/openstack.ini | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/etc/openstack.ini b/etc/openstack.ini index a491689..557cb3c 100644 --- a/etc/openstack.ini +++ b/etc/openstack.ini @@ -16,14 +16,14 @@ password = Secrete [keystone] # NOTE(cloudnull): # When using keystone V3 you will need the .*domain_name configuration options. -user_domain_name = default # This is required when Keystone V3 is being used -project_domain_name = default # This is required when Keystone V3 is being used +user_domain_name = default +project_domain_name = default [glance] # NOTE(cloudnull): -# If you're using keystone V2 you will need the tenant_name option. -tenant_name = admin # This is required when Keystone V2 is being used -project_name = admin # This is required when Keystone V2 is being used +# If you're using keystone V2 you will need the tenant_name and project_name options. +tenant_name = admin +project_name = admin # NEVER Mix and match the options tenant name and domain_name options withiin the same section. # You are be required to run either V2 or V3 as it pertains to this config.