aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-01-05 14:58:30 -0500
committerMicah Anderson <micah@riseup.net>2012-01-05 14:58:30 -0500
commitf87e000678ce02f98e8268ef59bb0b8a388e15ff (patch)
tree257cb831c6341031f2bc017d5f346dc80690da89 /templates
parent3cea58cd5081fdec65e93b76f53243455fc1faed (diff)
downloadpuppet-backupninja-f87e000678ce02f98e8268ef59bb0b8a388e15ff.tar.gz
puppet-backupninja-f87e000678ce02f98e8268ef59bb0b8a388e15ff.tar.bz2
add the $nodata and $mysqldumpoptions options to the mysql handler template
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..95a001b 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 nodata backupdir sqldumpoptions vsname}.each do |v|
if send(v)
-%><%= v + ' = ' + send(v) + "\n" %><%
end