mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-21 21:41:46 -07:00
fix wrong modif
This commit is contained in:
parent
efe8ad2fd9
commit
7475198323
2 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
|
||||||
from plugins.module_utils.implementations.mysql.hash import mysql_sha256_password_hash_hex
|
from plugins.module_utils.implementations.mysql.hash import (
|
||||||
|
mysql_sha256_password_hash_hex,
|
||||||
|
)
|
||||||
|
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
# This code is part of Ansible, but is an independent component.
|
# This code is part of Ansible, but is an independent component.
|
||||||
|
|
|
@ -116,7 +116,7 @@
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
name: '{{ test_user_name }}'
|
name: '{{ test_user_name }}'
|
||||||
host: '%'
|
host: '%'
|
||||||
plugin: '{{ test_plugin_type_sha256 }}'
|
plugin: '{{ test_plugin_type }}'
|
||||||
plugin_hash_string: '{{ test_plugin_hash }}'
|
plugin_hash_string: '{{ test_plugin_hash }}'
|
||||||
priv: '{{ test_default_priv }}'
|
priv: '{{ test_default_priv }}'
|
||||||
register: result
|
register: result
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue