The database should have utf-8 charset.

It is created with utf-8 charset in nova.
This commit is contained in:
François Charlier 2012-04-24 17:31:20 +02:00
parent 7d7f41f488
commit 4dcac4eb7d
1 changed files with 2 additions and 2 deletions

View File

@ -19,13 +19,13 @@ class nova::db::mysql(
user => $user,
password => $password,
host => $host,
charset => 'latin1',
charset => 'utf-8',
# I may want to inject some sql
require => Class['mysql::server'],
}
if $allowed_hosts {
nova::db::mysql::host_access { $allowed_hosts:
nova::db::mysql::host_access { $allowed_hosts:
user => $user,
password => $password,
database => $dbname,