From ea54a44c76356c362646d0d93f5947b7974fe569 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 26 Nov 2020 13:12:51 +0300 Subject: [PATCH] mysql_info: fix documentation (#67) --- plugins/modules/mysql_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/mysql_info.py b/plugins/modules/mysql_info.py index 6dc0853..c7d9e89 100644 --- a/plugins/modules/mysql_info.py +++ b/plugins/modules/mysql_info.py @@ -34,7 +34,7 @@ options: exclude_fields: description: - List of fields which are not needed to collect. - - "Supports elements: C(db_size). Unsupported elements will be ignored" + - "Supports elements: C(db_size). Unsupported elements will be ignored." type: list elements: str version_added: '0.1.0' @@ -47,6 +47,7 @@ options: notes: - 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). +- Supports C(check_mode). seealso: - module: community.mysql.mysql_variables @@ -59,7 +60,6 @@ author: extends_documentation_fragment: - community.mysql.mysql - ''' EXAMPLES = r'''