Browse code

Use database connection for keystone

The keystone configuration used the 'connection' option in the
'sql' section of the keystone.conf file. This option is deprecated
in favor of 'connection' in the 'database' section.

The keystone setup code is changed to use the option in the new
section rather than the deprecated one.

Change-Id: I62fd2f50ded3b8848e9e5225e88c80ed8fed3bff

Brant Knudson authored on 2014/02/14 09:59:50
Showing 1 changed files
... ...
@@ -201,7 +201,7 @@ function configure_keystone() {
201 201
         iniset $KEYSTONE_CONF token provider keystone.token.providers.uuid.Provider
202 202
     fi
203 203
 
204
-    iniset $KEYSTONE_CONF sql connection `database_connection_url keystone`
204
+    iniset $KEYSTONE_CONF database connection `database_connection_url keystone`
205 205
     iniset $KEYSTONE_CONF ec2 driver "keystone.contrib.ec2.backends.sql.Ec2"
206 206
 
207 207
     if [[ "$KEYSTONE_TOKEN_BACKEND" = "sql" ]]; then