From e818ab1dd0be990ae1586c15b21ef1936260f914 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 10 Dec 2019 17:26:00 +0300 Subject: [PATCH] mysql_info: add seealso section (#65688) --- lib/ansible/modules/database/mysql/mysql_info.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/database/mysql/mysql_info.py b/lib/ansible/modules/database/mysql/mysql_info.py index 95a0326a992..eb57a82f945 100644 --- a/lib/ansible/modules/database/mysql/mysql_info.py +++ b/lib/ansible/modules/database/mysql/mysql_info.py @@ -50,6 +50,12 @@ 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). +seealso: +- module: mysql_variables +- module: mysql_db +- module: mysql_user +- module: mysql_replication + author: - Andrew Klychkov (@Andersson007)