mention MariaDB in descriptions and notes

This commit is contained in:
robertsilen 2024-05-30 13:53:34 +03:00
parent 554d99e58b
commit 172ada9e20
7 changed files with 25 additions and 15 deletions

7
plugins/modules/mysql_variables.py Normal file → Executable file
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
'''