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:
Daneyon Hansen
2013-05-14 19:04:36 -07:00
committed by Dan Bode
parent b4aa935eac
commit 71b2e0d8f1

View File

@@ -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")
} }