mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-24 06:51:45 -07:00
removed remaining references to community.general
This commit is contained in:
parent
4338a1853c
commit
815ad0de99
1 changed files with 7 additions and 7 deletions
|
@ -155,10 +155,10 @@ options:
|
||||||
version_added: '0.2.0'
|
version_added: '0.2.0'
|
||||||
|
|
||||||
seealso:
|
seealso:
|
||||||
- module: community.general.mysql_info
|
- module: community.mysql.mysql_info
|
||||||
- module: community.general.mysql_variables
|
- module: community.mysql.mysql_variables
|
||||||
- module: community.general.mysql_user
|
- module: community.mysql.mysql_user
|
||||||
- module: community.general.mysql_replication
|
- module: community.mysql.mysql_replication
|
||||||
- name: MySQL command-line client reference
|
- name: MySQL command-line client reference
|
||||||
description: Complete reference of the MySQL command-line client documentation.
|
description: Complete reference of the MySQL command-line client documentation.
|
||||||
link: https://dev.mysql.com/doc/refman/8.0/en/mysql.html
|
link: https://dev.mysql.com/doc/refman/8.0/en/mysql.html
|
||||||
|
@ -180,7 +180,7 @@ notes:
|
||||||
- This module is B(not idempotent) when I(state) is C(import),
|
- This module is B(not idempotent) when I(state) is C(import),
|
||||||
and will import the dump file each time if run more than once.
|
and will import the dump file each time if run more than once.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.mysql
|
- community.mysql.mysql
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -317,8 +317,8 @@ import subprocess
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible_collections.community.general.plugins.module_utils.database import mysql_quote_identifier
|
from ansible_collections.community.mysql.plugins.module_utils.database import mysql_quote_identifier
|
||||||
from ansible_collections.community.general.plugins.module_utils.mysql import mysql_connect, mysql_driver, mysql_driver_fail_msg
|
from ansible_collections.community.mysql.plugins.module_utils.mysql import mysql_connect, mysql_driver, mysql_driver_fail_msg
|
||||||
from ansible.module_utils.six.moves import shlex_quote
|
from ansible.module_utils.six.moves import shlex_quote
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue