From a79c9e23ee9317309ec1d9015b3d4eaa5cd3deb3 Mon Sep 17 00:00:00 2001 From: Andrey Klychkov Date: Fri, 6 Dec 2019 10:30:28 +0300 Subject: [PATCH] mysql_db: add seeaslo section (#65593) --- lib/ansible/modules/database/mysql/mysql_db.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lib/ansible/modules/database/mysql/mysql_db.py b/lib/ansible/modules/database/mysql/mysql_db.py index cb365f892ba..1747ade47ab 100644 --- a/lib/ansible/modules/database/mysql/mysql_db.py +++ b/lib/ansible/modules/database/mysql/mysql_db.py @@ -78,6 +78,23 @@ options: type: bool default: no version_added: "2.10" +seealso: +- module: mysql_info +- module: mysql_variables +- module: mysql_user +- module: mysql_replication +- name: MySQL command-line client reference + description: Complete reference of the MySQL command-line client documentation. + link: https://dev.mysql.com/doc/refman/8.0/en/mysql.html +- name: mysqldump reference + description: Complete reference of the ``mysqldump`` client utility documentation. + link: https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html +- name: CREATE DATABASE reference + description: Complete reference of the CREATE DATABASE command documentation. + link: https://dev.mysql.com/doc/refman/8.0/en/create-database.html +- name: DROP DATABASE reference + description: Complete reference of the DROP DATABASE command documentation. + link: https://dev.mysql.com/doc/refman/8.0/en/drop-database.html author: "Ansible Core Team" requirements: - mysql (command line binary)