remove extra $
this commit simply removes an extra $ that was entered by mistake. The extra dollar sign is ignored by Puppet, but it is obviously invalid syntax. Change-Id: Iec913bbc62a0d3166a890bd2bd59d546d8ed5dab
This commit is contained in:
@@ -84,7 +84,7 @@ class openstack::keystone (
|
|||||||
|
|
||||||
# Install and configure Keystone
|
# Install and configure Keystone
|
||||||
if $db_type == 'mysql' {
|
if $db_type == 'mysql' {
|
||||||
$sql_conn = "mysql://${$db_user}:${db_password}@${db_host}/${db_name}"
|
$sql_conn = "mysql://${db_user}:${db_password}@${db_host}/${db_name}"
|
||||||
} else {
|
} else {
|
||||||
fail("db_type ${db_type} is not supported")
|
fail("db_type ${db_type} is not supported")
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user