From 1766c5082418d31d3c9444abc5df6a36937f3ed2 Mon Sep 17 00:00:00 2001 From: Jonathan Mainguy Date: Tue, 27 Oct 2015 12:09:01 -0400 Subject: [PATCH] Update documentation to reflect need for mysql client --- database/mysql/mysql_db.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/database/mysql/mysql_db.py b/database/mysql/mysql_db.py index 33720f5d4f6..9761271f058 100644 --- a/database/mysql/mysql_db.py +++ b/database/mysql/mysql_db.py @@ -85,12 +85,15 @@ notes: - Requires the MySQLdb Python package on the remote host. For Ubuntu, this is as easy as apt-get install python-mysqldb. (See M(apt).) For CentOS/Fedora, this is as easy as yum install MySQL-python. (See M(yum).) + - Requires the mysql command line client. For Centos/Fedora, this is as easy as + yum install mariadb (See M(yum).). For Debian/Ubuntu this is as easy as + apt-get install mariadb-client. (See M(apt).) - Both I(login_password) and I(login_user) are required when you are 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 C(root) with no password. requirements: [ ConfigParser ] -author: "Mark Theunissen (@marktheunissen)" +author: "Ansible Core Team" ''' EXAMPLES = '''