Changed from default charset of utf-8

Nova db does not support utf-8. I was getting
error messages that something had exceeded the 
1000 byte limit.
This commit is contained in:
Dan Bode 2011-06-17 23:20:21 -07:00
parent 509fcbb8b8
commit 3a34c172f4
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ class nova::db(
user => $user,
password => $password,
host => $host,
charset => 'latin1',
# I may want to inject some sql
require => Class['mysql::server'],
notify => Exec["initial-db-sync"],