module-mysql/templates/conf.erb
Gabriel Filion fc6458e9e4 manage configuration snippets in a conf.d directory
this should make it easier to override values from my.cnf, or to set
other values that aren't in the main config file.
2013-12-05 16:19:52 -05:00

9 lines
181 B
Text

# THIS FILE IS MANAGED BY PUPPET
[<%= @section -%>]
<% @config.each do |key, value| -%>
<% if value != '' -%>
<%= key -%> = <%= value %>
<% else -%>
<%= key %>
<% end -%>
<% end %>