Merge "MySQL: Enable passthrough configuration"

This commit is contained in:
Jenkins 2014-07-03 12:22:55 +00:00 committed by Gerrit Code Review
commit 8739e40147
2 changed files with 23 additions and 0 deletions

View File

@ -72,3 +72,7 @@ expire_logs_days = 7
max_binlog_size = 100M
binlog_format = ROW
!includedir /etc/mysql/conf.d/
# PASSTHRU options included last
# will override all previous options
!include /etc/mysql/passthru.cnf

View File

@ -0,0 +1,19 @@
# Passthrough configuration
{{#mysql}}
{{#config}}
[{{{section}}}]
{{#values}}
{{#comment}}
# {{{.}}}
{{/comment}}
{{#option}}
{{#value}}
{{{option}}} = {{{.}}}
{{/value}}
{{^value}}
{{{option}}}
{{/value}}
{{/option}}
{{/values}}
{{/config}}
{{/mysql}}