Update DB & example manifest

This commit is contained in:
Émilien Macchi 2013-06-09 23:18:11 +02:00
parent da915cc4b6
commit fa2d267593
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ node default {
}
# Common class
class { 'heat': }
class { 'heat::params': }
# class { 'heat::params': }
# Install the heat-api service
# The keystone_password parameter is mandatory

View File

@ -7,7 +7,7 @@
# the connection string. format: [driver]://[user]:[password]@[host]/[database]
#
class heat::db (
$database_connection = 'mysql://heat:heat@localhost/heat'
$sql_connection = 'mysql://heat:heat@localhost/heat'
) {
include heat::params
@ -41,6 +41,6 @@ class heat::db (
}
heat_engine_config {
'DEFAULT/database_connection': value => $database_connection;
'DEFAULT/sql_connection': value => $database_connection;
}
}