From b4dbeb05c4bb40b9dfd3807775f6bba481b9daf4 Mon Sep 17 00:00:00 2001 From: pjan Date: Wed, 12 Mar 2014 10:59:47 +0800 Subject: [PATCH] Readme correction --- README.md | 8 +++++--- templates/etc_mysql_my.cnf.j2 | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e3025bf..c8c6d2e 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,12 @@ Features include: - Standard hardening (root password, removal of test databases) - Add databases - Add users +- Setup of monit process supervision + #### Requirements & Dependencies - Tested on Ansible 1.4 or higher. -- Ansibles.monit if you want monit protection (in that case you should set `monit_protection: true`) +- Ansibles.monit if you want monit protection (in that case, you should set `monit_protection: true`) #### Variables @@ -18,8 +20,8 @@ Features include: ```yaml # Basic settings mysql_port: 3306 # The port on which mysql listens -mysql_bind_address: "0.0.0.0" # -mysql_root_password: 'pass' # +mysql_bind_address: "0.0.0.0" # The address the mysql server binds on +mysql_root_password: 'pass' # The root password # Fine Tuning mysql_key_buffer: '16M' diff --git a/templates/etc_mysql_my.cnf.j2 b/templates/etc_mysql_my.cnf.j2 index 67863cd..72b1c4f 100644 --- a/templates/etc_mysql_my.cnf.j2 +++ b/templates/etc_mysql_my.cnf.j2 @@ -75,13 +75,13 @@ collation_server = {{ mysql_collation_server }} [mysqldump] quick quote-names -max_allowed_packet = {{ mysql_max_allowed_packet }} +max_allowed_packet = {{ mysql_mysqldump_max_allowed_packet }} [mysql] #no-auto-rehash # faster start of mysql but no tab completition [isamchk] -key_buffer = {{ mysql_key_buffer }} +key_buffer = {{ mysql_isamchk_key_buffer }} # # * IMPORTANT: Additional settings that can override those from this file!