fc6458e9e4
this should make it easier to override values from my.cnf, or to set other values that aren't in the main config file.
9 lines
181 B
Text
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 %>
|