From: Silvio Rhatto Date: Mon, 13 Jun 2016 13:43:28 +0000 (-0300) Subject: Config table_cache renamed to table_open_cache X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=92e432611864a3c06f3d86528cefb64c5a7535e0;p=puppet-database.git Config table_cache renamed to table_open_cache --- diff --git a/manifests/init.pp b/manifests/init.pp index 38c33e7..1a3509a 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -38,6 +38,12 @@ class database { 'tmp_table_size': value => hiera('database::tmp_table_size', '64M'); 'max_heap_table_size': value => hiera('database::max_heap_table_size', '64M'); 'innodb_buffer_pool_size': value => hiera('database::innodb_buffer_pool_size', '256M'); - 'table_cache': value => hiera('database::table_cache', '800'); + 'table_open_cache': value => hiera('database::table_cache', '800'); + } + + # Renamed to table_open_cache + database::config { 'table_cache': + value => hiera('database::table_cache', '800'), + ensure => absent. } }