Skip to content

Commit

Permalink
Default section is mysqld, don't repeat it
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Remy committed Oct 29, 2012
1 parent 466f42a commit 1f064c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifests/config/performance.pp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'query_cache_size': ensure => absent;
'thread_concurrency': ensure => absent;
'thread_stack': ensure => absent;
'mysqld/max_allowed_packet': ensure => absent;
'max_allowed_packet': ensure => absent;
'isamchk/key_buffer': ensure => absent;
'isamchk/sort_buffer_size': ensure => absent;
'isamchk/read_buffer': ensure => absent;
Expand Down
2 changes: 1 addition & 1 deletion manifests/config/performance/huge.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'query_cache_size': value => '32M';
'thread_concurrency': value => '8';
'thread_stack': ensure => absent;
'mysqld/max_allowed_packet': value => '16M';
'max_allowed_packet': value => '16M';
'isamchk/key_buffer': value => '256M';
'isamchk/sort_buffer_size': value => '256M';
'isamchk/read_buffer': value => '2M';
Expand Down
2 changes: 1 addition & 1 deletion manifests/config/performance/large.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'query_cache_size': value => '16M';
'thread_concurrency': value => '8';
'thread_stack': ensure => absent;
'mysqld/max_allowed_packet': value => '16M';
'max_allowed_packet': value => '16M';
'isamchk/key_buffer': value => '128M';
'isamchk/sort_buffer_size': value => '128M';
'isamchk/read_buffer': value => '2M';
Expand Down
2 changes: 1 addition & 1 deletion manifests/config/performance/medium.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'query_cache_size': ensure => absent;
'thread_concurrency': ensure => absent;
'thread_stack': ensure => absent;
'mysqld/max_allowed_packet': value => '16M';
'max_allowed_packet': value => '16M';
'isamchk/key_buffer': value => '20M';
'isamchk/sort_buffer_size': value => '20M';
'isamchk/read_buffer': value => '2M';
Expand Down
2 changes: 1 addition & 1 deletion manifests/config/performance/small.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'query_cache_size': ensure => absent;
'thread_concurrency': ensure => absent;
'thread_stack': value => '64K';
'mysqld/max_allowed_packet': value => '16M';
'max_allowed_packet': value => '16M';
'isamchk/key_buffer': value => '8M';
'isamchk/sort_buffer_size': value => '8M';
'isamchk/read_buffer': ensure => absent;
Expand Down

0 comments on commit 1f064c7

Please sign in to comment.