Update documentation to reflect need for mysql client
This commit is contained in:
parent
35e6684163
commit
caf6115f43
1 changed files with 6 additions and 2 deletions
|
@ -83,13 +83,17 @@ options:
|
||||||
required: false
|
required: false
|
||||||
notes:
|
notes:
|
||||||
- Requires the MySQLdb Python package on the remote host. For Ubuntu, this
|
- Requires the MySQLdb Python package on the remote host. For Ubuntu, this
|
||||||
is as easy as apt-get install python-mysqldb. (See M(apt).)
|
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
|
- 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
|
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
|
the credentials from C(~/.my.cnf), and finally fall back to using the MySQL
|
||||||
default login of C(root) with no password.
|
default login of C(root) with no password.
|
||||||
requirements: [ ConfigParser ]
|
requirements: [ ConfigParser ]
|
||||||
author: "Mark Theunissen (@marktheunissen)"
|
author: "Ansible Core Team"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Reference in a new issue