From aaa04add66b28d76d5d4e898cefc2f76f6696d1b Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 1 Mar 2013 17:17:00 -0500 Subject: [PATCH] fix MySQL user doc formatting issue --- mysql_user | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql_user b/mysql_user index a56c9a99349..4ca2587bbf5 100644 --- a/mysql_user +++ b/mysql_user @@ -81,11 +81,11 @@ notes: passing credentials. If none are present, the module will attempt to read the credentials from C(~/.my.cnf), and finally fall back to using the MySQL default login of 'root' with no password. - - MySQL server installs with default login_user of 'root' and no password. To secure this user + - "MySQL server installs with default login_user of 'root' and no password. To secure this user as part of an idempotent playbook, you must create at least two tasks: the first must change the root user's password, without providing any login_user/login_password details. The second must drop a ~/.my.cnf file containing the new root credentials. Subsequent runs of the playbook will then succeed by reading the new credentials from - the file. + the file." requirements: [ "ConfigParser", "MySQLdb" ] author: Mark Theunissen