Fix utf8 4 byte collation method

The default collate method used by the mysql puppet module is not
compatbile with our 4 byte encoding. Update the collate method to match
the 4 byte encoding.

Change-Id: I8f65316ba609ecf30c9797d631bdeb4a083b16ce
This commit is contained in:
Clark Boylan 2016-11-14 17:48:10 -08:00
parent 1348e723d2
commit d157f7c1a8
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ class etherpad_lite::mysql(
host => 'localhost',
grant => ['all'],
charset => 'utf8mb4',
collate => 'utf8mb4_unicode_ci',
require => [
Class['mysql::server'],
Class['mysql::server::account_security'],