mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
mention MariaDB (#640)
* mention MariaDB * mention MariaDB in descriptions and notes * nits * chmod -x
This commit is contained in:
parent
47610347ba
commit
6c4dca4bce
10 changed files with 28 additions and 18 deletions
|
@ -1,4 +1,4 @@
|
||||||
# MySQL collection for Ansible
|
# MySQL and MariaDB collection for Ansible
|
||||||
[](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Plugins+CI") [](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Roles+CI") [](https://codecov.io/gh/ansible-collections/community.mysql) [](https://matrix.to/#/#mysql:ansible.com)
|
[](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Plugins+CI") [](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Roles+CI") [](https://codecov.io/gh/ansible-collections/community.mysql) [](https://matrix.to/#/#mysql:ansible.com)
|
||||||
|
|
||||||
This collection is a part of the Ansible package.
|
This collection is a part of the Ansible package.
|
||||||
|
|
|
@ -25,5 +25,5 @@ sections:
|
||||||
- Bugfixes
|
- Bugfixes
|
||||||
- - known_issues
|
- - known_issues
|
||||||
- Known Issues
|
- Known Issues
|
||||||
title: Community MySQL Collection
|
title: Community MySQL and MariaDB Collection
|
||||||
trivial_section_name: trivial
|
trivial_section_name: trivial
|
||||||
|
|
|
@ -5,7 +5,7 @@ version: 3.9.0
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible community
|
- Ansible community
|
||||||
description: MySQL collection for Ansible
|
description: MySQL and MariaDB collection for Ansible
|
||||||
license_file: COPYING
|
license_file: COPYING
|
||||||
tags:
|
tags:
|
||||||
- database
|
- database
|
||||||
|
|
|
@ -11,9 +11,9 @@ __metaclass__ = type
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_db
|
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:
|
description:
|
||||||
- Add or remove MySQL databases from a remote host.
|
- Add or remove MySQL or MariaDB databases from a remote host.
|
||||||
options:
|
options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
|
@ -188,6 +188,7 @@ requirements:
|
||||||
- mysql (command line binary)
|
- mysql (command line binary)
|
||||||
- mysqldump (command line binary)
|
- mysqldump (command line binary)
|
||||||
notes:
|
notes:
|
||||||
|
- Compatible with MariaDB or MySQL.
|
||||||
- Requires the mysql and mysqldump binaries on the remote host.
|
- Requires the mysql and mysqldump binaries on the remote host.
|
||||||
- This module is B(not idempotent) when I(state) is C(import),
|
- 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.
|
and will import the dump file each time if run more than once.
|
||||||
|
|
|
@ -11,9 +11,9 @@ __metaclass__ = type
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_info
|
module: mysql_info
|
||||||
short_description: Gather information about MySQL servers
|
short_description: Gather information about MySQL or MariaDB servers
|
||||||
description:
|
description:
|
||||||
- Gathers information about MySQL servers.
|
- Gathers information about MySQL or MariaDB servers.
|
||||||
|
|
||||||
options:
|
options:
|
||||||
filter:
|
filter:
|
||||||
|
@ -46,6 +46,7 @@ options:
|
||||||
default: false
|
default: false
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
|
- Compatible with MariaDB or MySQL.
|
||||||
- Calculating the size of a database might be slow, depending on the number and size of tables in it.
|
- Calculating the size of a database might be slow, depending on the number and size of tables in it.
|
||||||
To avoid this, use I(exclude_fields=db_size).
|
To avoid this, use I(exclude_fields=db_size).
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ __metaclass__ = type
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_query
|
module: mysql_query
|
||||||
short_description: Run MySQL queries
|
short_description: Run MySQL or MariaDB queries
|
||||||
description:
|
description:
|
||||||
- Runs arbitrary MySQL queries.
|
- Runs arbitrary MySQL or MariaDB queries.
|
||||||
- Pay attention, the module does not support check mode!
|
- Pay attention, the module does not support check mode!
|
||||||
All queries will be executed in autocommit mode.
|
All queries will be executed in autocommit mode.
|
||||||
- To run SQL queries from a file, use M(community.mysql.mysql_db) module.
|
- To run SQL queries from a file, use M(community.mysql.mysql_db) module.
|
||||||
|
@ -56,6 +56,8 @@ attributes:
|
||||||
support: none
|
support: none
|
||||||
seealso:
|
seealso:
|
||||||
- module: community.mysql.mysql_db
|
- module: community.mysql.mysql_db
|
||||||
|
notes:
|
||||||
|
- Compatible with MariaDB or MySQL.
|
||||||
author:
|
author:
|
||||||
- Andrew Klychkov (@Andersson007)
|
- Andrew Klychkov (@Andersson007)
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
|
|
|
@ -13,9 +13,9 @@ __metaclass__ = type
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_replication
|
module: mysql_replication
|
||||||
short_description: Manage MySQL replication
|
short_description: Manage MySQL or MariaDB replication
|
||||||
description:
|
description:
|
||||||
- Manages MySQL server replication, replica, primary status, get and change primary host.
|
- Manages MySQL or MariaDB server replication, replica, primary status, get and change primary host.
|
||||||
author:
|
author:
|
||||||
- Balazs Pocze (@banyek)
|
- Balazs Pocze (@banyek)
|
||||||
- Andrew Klychkov (@Andersson007)
|
- Andrew Klychkov (@Andersson007)
|
||||||
|
@ -191,7 +191,8 @@ options:
|
||||||
version_added: '0.1.0'
|
version_added: '0.1.0'
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- If an empty value for the parameter of string type is needed, use an empty string.
|
- Compatible with MariaDB or MySQL.
|
||||||
|
- If an empty value for the parameter of string type is needed, use an empty string.
|
||||||
|
|
||||||
attributes:
|
attributes:
|
||||||
check_mode:
|
check_mode:
|
||||||
|
|
|
@ -11,10 +11,10 @@ DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_role
|
module: mysql_role
|
||||||
|
|
||||||
short_description: Adds, removes, or updates a MySQL role
|
short_description: Adds, removes, or updates a MySQL or MariaDB role
|
||||||
|
|
||||||
description:
|
description:
|
||||||
- Adds, removes, or updates a MySQL role.
|
- Adds, removes, or updates a MySQL or MariaDB role.
|
||||||
- Roles are supported since MySQL 8.0.0 and MariaDB 10.0.5.
|
- Roles are supported since MySQL 8.0.0 and MariaDB 10.0.5.
|
||||||
|
|
||||||
version_added: '2.2.0'
|
version_added: '2.2.0'
|
||||||
|
@ -132,6 +132,7 @@ options:
|
||||||
version_added: '3.8.0'
|
version_added: '3.8.0'
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
|
- Roles are supported since MySQL 8.0.0 and MariaDB 10.0.5.
|
||||||
- Pay attention that the module runs C(SET DEFAULT ROLE ALL TO)
|
- Pay attention that the module runs C(SET DEFAULT ROLE ALL TO)
|
||||||
all the I(members) passed by default when the state has changed.
|
all the I(members) passed by default when the state has changed.
|
||||||
If you want to avoid this behavior, set I(set_default_role_all) to C(no).
|
If you want to avoid this behavior, set I(set_default_role_all) to C(no).
|
||||||
|
|
|
@ -11,9 +11,9 @@ __metaclass__ = type
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_user
|
module: mysql_user
|
||||||
short_description: Adds or removes a user from a MySQL database
|
short_description: Adds or removes a user from a MySQL or MariaDB database
|
||||||
description:
|
description:
|
||||||
- Adds or removes a user from a MySQL database.
|
- Adds or removes a user from a MySQL or MariaDB database.
|
||||||
options:
|
options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
|
@ -188,6 +188,7 @@ options:
|
||||||
version_added: '3.9.0'
|
version_added: '3.9.0'
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
|
- Compatible with MySQL or MariaDB.
|
||||||
- "MySQL server installs with default I(login_user) of C(root) and no password.
|
- "MySQL server installs with default I(login_user) of C(root) and no password.
|
||||||
To secure this user as part of an idempotent playbook, you must create at least two tasks:
|
To secure this user as part of an idempotent playbook, you must create at least two tasks:
|
||||||
1) change the root user's password, without providing any I(login_user)/I(login_password) details,
|
1) change the root user's password, without providing any I(login_user)/I(login_password) details,
|
||||||
|
|
|
@ -12,9 +12,9 @@ DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: mysql_variables
|
module: mysql_variables
|
||||||
|
|
||||||
short_description: Manage MySQL global variables
|
short_description: Manage MySQL or MariaDB global variables
|
||||||
description:
|
description:
|
||||||
- Query / Set MySQL variables.
|
- Query / Set MySQL or MariaDB variables.
|
||||||
author:
|
author:
|
||||||
- Balazs Pocze (@banyek)
|
- Balazs Pocze (@banyek)
|
||||||
options:
|
options:
|
||||||
|
@ -54,6 +54,9 @@ seealso:
|
||||||
description: Complete reference of the MySQL SET command documentation.
|
description: Complete reference of the MySQL SET command documentation.
|
||||||
link: https://dev.mysql.com/doc/refman/8.0/en/set-statement.html
|
link: https://dev.mysql.com/doc/refman/8.0/en/set-statement.html
|
||||||
|
|
||||||
|
notes:
|
||||||
|
- Compatible with MariaDB or MySQL.
|
||||||
|
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.mysql.mysql
|
- community.mysql.mysql
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Add table
Reference in a new issue