From d157f7c1a8a390ac22db43578184c6124541ea07 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Mon, 14 Nov 2016 17:48:10 -0800 Subject: [PATCH] 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 --- manifests/mysql.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/mysql.pp b/manifests/mysql.pp index 2543817..7f30dfd 100644 --- a/manifests/mysql.pp +++ b/manifests/mysql.pp @@ -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'],