From 549c7fe15aa44a128f318c5f4a8774c410cbe98c Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Thu, 26 Nov 2020 13:12:31 +0300 Subject: [PATCH] mysql_variables: fix documentation (#66) --- plugins/modules/mysql_variables.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/plugins/modules/mysql_variables.py b/plugins/modules/mysql_variables.py index 1b3418f..06beee3 100644 --- a/plugins/modules/mysql_variables.py +++ b/plugins/modules/mysql_variables.py @@ -20,12 +20,12 @@ author: options: variable: description: - - Variable name to operate + - Variable name to operate. type: str required: yes value: description: - - If set, then sets variable value to this + - If set, then sets variable value to this. type: str mode: description: @@ -44,6 +44,9 @@ options: default: global version_added: '0.1.0' +notes: +- Does not support C(check_mode). + seealso: - module: community.mysql.mysql_info - name: MySQL SET command reference @@ -52,7 +55,6 @@ seealso: extends_documentation_fragment: - community.mysql.mysql - ''' EXAMPLES = r'''