summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Mainguy <jmainguy@redhat.com>2015-10-27 12:09:01 -0400
committerJonathan Mainguy <jmainguy@redhat.com>2015-10-28 12:01:00 -0400
commit1766c5082418d31d3c9444abc5df6a36937f3ed2 (patch)
treefa3a347b3bca9d5b39ad4ab907b6c910cf0c96cc
parent1b3e82e4b0dade8048512876e893e2b219424630 (diff)
downloadansible-modules-core-1766c5082418d31d3c9444abc5df6a36937f3ed2.tar.gz
Update documentation to reflect need for mysql client
-rw-r--r--database/mysql/mysql_db.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/database/mysql/mysql_db.py b/database/mysql/mysql_db.py
index 33720f5d..9761271f 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 = '''