mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-20 01:11:27 -07:00
mention MariaDB in descriptions and notes
This commit is contained in:
parent
554d99e58b
commit
172ada9e20
7 changed files with 25 additions and 15 deletions
5
plugins/modules/mysql_db.py
Normal file → Executable file
5
plugins/modules/mysql_db.py
Normal file → Executable file
|
@ -11,9 +11,9 @@ __metaclass__ = type
|
|||
DOCUMENTATION = r'''
|
||||
---
|
||||
module: mysql_db
|
||||
short_description: Add or remove MySQL databases from a remote host
|
||||
short_description: Add or remove MySQL or MariaDB databases from a remote host
|
||||
description:
|
||||
- Add or remove MySQL databases from a remote host.
|
||||
- Add or remove MySQL or MariaDB databases from a remote host.
|
||||
options:
|
||||
name:
|
||||
description:
|
||||
|
@ -188,6 +188,7 @@ requirements:
|
|||
- mysql (command line binary)
|
||||
- mysqldump (command line binary)
|
||||
notes:
|
||||
- Compatible with MariaDB or MySQL
|
||||
- Requires the mysql and mysqldump binaries on the remote host.
|
||||
- This module is B(not idempotent) when I(state) is C(import),
|
||||
and will import the dump file each time if run more than once.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue