From 2a78b958c7db758aba4831489c5500953765257b Mon Sep 17 00:00:00 2001 From: Spencer Krum Date: Thu, 12 Nov 2015 08:50:04 -0800 Subject: [PATCH] Etherpad requires 4byte utf8 charset Change-Id: I284f7dca1a71ebe2065253822aeaea268e316712 --- manifests/mysql.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/mysql.pp b/manifests/mysql.pp index cb12a62..b6eb625 100644 --- a/manifests/mysql.pp +++ b/manifests/mysql.pp @@ -21,7 +21,7 @@ class etherpad_lite::mysql( password => $database_password, host => 'localhost', grant => ['all'], - charset => 'utf8', + charset => 'utf8mb4', require => [ Class['mysql::server'], Class['mysql::server::account_security'],