aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-09-05 13:10:28 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-09-05 13:10:28 -0300
commit6c081113990344c14c96586024258ebc7dfa6de8 (patch)
treed9c14f95a190c0b421068e12d3ab7e3cd49c26c6 /templates
parent3815377799754d09f5ca28efdda8b78d9d3e2aa4 (diff)
downloadpuppet-backupninja-6c081113990344c14c96586024258ebc7dfa6de8.tar.gz
puppet-backupninja-6c081113990344c14c96586024258ebc7dfa6de8.tar.bz2
Adding sqldumpoptions parameter to backupninja::mysql
Diffstat (limited to 'templates')
-rw-r--r--templates/mysql.conf.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/mysql.conf.erb b/templates/mysql.conf.erb
index 14905fd..82dc368 100644
--- a/templates/mysql.conf.erb
+++ b/templates/mysql.conf.erb
@@ -3,7 +3,7 @@
# the next time Puppet runs. Please make configuration changes to this
# service in Puppet.
-<% %w{user dbusername dbpassword dbhost databases backupdir vsname}.each do |v|
+<% %w{user dbusername dbpassword dbhost databases backupdir vsname sqldumpoptions}.each do |v|
if send(v)
-%><%= v + ' = ' + send(v) + "\n" %><%
end