mention MariaDB (#640)

* mention MariaDB

* mention MariaDB in descriptions and notes

* nits

* chmod -x
This commit is contained in:
Robert Silén 2024-05-31 10:14:43 +03:00 committed by GitHub
parent 47610347ba
commit 6c4dca4bce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 28 additions and 18 deletions

View file

@ -1,4 +1,4 @@
# MySQL collection for Ansible
# MySQL and MariaDB collection for Ansible
[![Plugins CI](https://github.com/ansible-collections/community.mysql/workflows/Plugins%20CI/badge.svg?event=push)](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Plugins+CI") [![Roles CI](https://github.com/ansible-collections/community.mysql/workflows/Roles%20CI/badge.svg?event=push)](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Roles+CI") [![Codecov](https://img.shields.io/codecov/c/github/ansible-collections/community.mysql)](https://codecov.io/gh/ansible-collections/community.mysql) [![Discuss on Matrix at #mysql:ansible.com](https://img.shields.io/matrix/mysql:ansible.com.svg?server_fqdn=ansible-accounts.ems.host&label=Discuss%20on%20Matrix%20at%20%23mysql:ansible.com&logo=matrix)](https://matrix.to/#/#mysql:ansible.com)
This collection is a part of the Ansible package.

View file

@ -25,5 +25,5 @@ sections:
- Bugfixes
- - known_issues
- Known Issues
title: Community MySQL Collection
title: Community MySQL and MariaDB Collection
trivial_section_name: trivial

View file

@ -5,7 +5,7 @@ version: 3.9.0
readme: README.md
authors:
- Ansible community
description: MySQL collection for Ansible
description: MySQL and MariaDB collection for Ansible
license_file: COPYING
tags:
- database

View 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.

View file

@ -11,9 +11,9 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
module: mysql_info
short_description: Gather information about MySQL servers
short_description: Gather information about MySQL or MariaDB servers
description:
- Gathers information about MySQL servers.
- Gathers information about MySQL or MariaDB servers.
options:
filter:
@ -46,6 +46,7 @@ options:
default: false
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.
To avoid this, use I(exclude_fields=db_size).

View file

@ -10,9 +10,9 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
module: mysql_query
short_description: Run MySQL queries
short_description: Run MySQL or MariaDB queries
description:
- Runs arbitrary MySQL queries.
- Runs arbitrary MySQL or MariaDB queries.
- Pay attention, the module does not support check mode!
All queries will be executed in autocommit mode.
- To run SQL queries from a file, use M(community.mysql.mysql_db) module.
@ -56,6 +56,8 @@ attributes:
support: none
seealso:
- module: community.mysql.mysql_db
notes:
- Compatible with MariaDB or MySQL.
author:
- Andrew Klychkov (@Andersson007)
extends_documentation_fragment:

View file

@ -13,9 +13,9 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
module: mysql_replication
short_description: Manage MySQL replication
short_description: Manage MySQL or MariaDB replication
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:
- Balazs Pocze (@banyek)
- Andrew Klychkov (@Andersson007)
@ -191,7 +191,8 @@ options:
version_added: '0.1.0'
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:
check_mode:

View file

@ -11,10 +11,10 @@ DOCUMENTATION = r'''
---
module: mysql_role
short_description: Adds, removes, or updates a MySQL role
short_description: Adds, removes, or updates a MySQL or MariaDB role
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.
version_added: '2.2.0'
@ -132,6 +132,7 @@ options:
version_added: '3.8.0'
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)
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).

View file

@ -11,9 +11,9 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
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:
- Adds or removes a user from a MySQL database.
- Adds or removes a user from a MySQL or MariaDB database.
options:
name:
description:
@ -188,6 +188,7 @@ options:
version_added: '3.9.0'
notes:
- Compatible with MySQL or MariaDB.
- "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:
1) change the root user's password, without providing any I(login_user)/I(login_password) details,

View file

@ -12,9 +12,9 @@ DOCUMENTATION = r'''
---
module: mysql_variables
short_description: Manage MySQL global variables
short_description: Manage MySQL or MariaDB global variables
description:
- Query / Set MySQL variables.
- Query / Set MySQL or MariaDB variables.
author:
- Balazs Pocze (@banyek)
options:
@ -54,6 +54,9 @@ seealso:
description: Complete reference of the MySQL SET command documentation.
link: https://dev.mysql.com/doc/refman/8.0/en/set-statement.html
notes:
- Compatible with MariaDB or MySQL.
extends_documentation_fragment:
- community.mysql.mysql
'''