summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Filion <gabster@lelutin.ca>2014-03-12 16:25:58 -0400
committerGabriel Filion <gabster@lelutin.ca>2014-03-12 16:25:58 -0400
commitb06570a940a705988360553446daa8ea52e60f27 (patch)
tree05f86d5280e4e65cd2bdf1167d494bd6afec3406
parente3b382edeb455a7b5c54dbe96f21518a3d49b3d8 (diff)
Document the new define in the README
Signed-off-by: Gabriel Filion <gabster@lelutin.ca>
-rw-r--r--README30
1 files changed, 30 insertions, 0 deletions
diff --git a/README b/README
index a454dbd..b92dd23 100644
--- a/README
+++ b/README
@@ -46,6 +46,36 @@ grant tables.
The my.cnf file will installed from one of many possible places, see
manifests/server/base.pp for possible locations for managing this.
+Configuration snippets
+----------------------
+
+To make managing mysql configuration easier, you can use the define
+mysql::conf. Note, though that there currently is only the Debian default
+configuration file that includes files in /etc/mysql/conf.d/.
+
+For example:
+
+mysql::conf { 'test':
+ ensure => present,
+ section => 'mysqld',
+ config => {
+ table_cache => '15000',
+ skip_slave => '',
+ something => '""',
+ }
+}
+
+The above example shows two possibilities for empty values.
+
+ * If a value only has an empty value in the hash passed to the config
+ parameter, that will define a boolean option in mysql by simply mentioning
+ the option name with no equal sign. So in the above, you'd have a line that
+ contains only "skip_slave".
+
+ * If you need to declare a variable with an empty value (e.g. with the equal
+ sign), you can use two quotes as the option's value. In the above example,
+ you'd have a line that looks like "something=".
+
Backups
-------