mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 02:00:31 -07:00
CI: Fix sanity errors (#668)
This commit is contained in:
parent
37a718c66f
commit
87be61ccf3
6 changed files with 2 additions and 4 deletions
|
@ -393,6 +393,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
update = True
|
||||
|
||||
if update:
|
||||
query_with_args = None
|
||||
if plugin_hash_string:
|
||||
query_with_args = "ALTER USER %s@%s IDENTIFIED WITH %s AS %s", (user, host, plugin, plugin_hash_string)
|
||||
elif plugin_auth_string:
|
||||
|
|
|
@ -20,6 +20,7 @@ options:
|
|||
- Name of the user (role) to add or remove.
|
||||
type: str
|
||||
required: true
|
||||
aliases: ['user']
|
||||
password:
|
||||
description:
|
||||
- Set the user's password. Only for C(mysql_native_password) authentication.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
plugins/modules/mysql_db.py validate-modules:use-run-command-not-popen
|
||||
plugins/modules/mysql_user.py validate-modules:undocumented-parameter
|
||||
plugins/module_utils/mysql.py pylint:unused-import
|
||||
plugins/module_utils/version.py pylint:unused-import
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
plugins/modules/mysql_db.py validate-modules:use-run-command-not-popen
|
||||
plugins/modules/mysql_user.py validate-modules:undocumented-parameter
|
||||
plugins/module_utils/mysql.py pylint:unused-import
|
||||
plugins/module_utils/version.py pylint:unused-import
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
plugins/modules/mysql_db.py validate-modules:use-run-command-not-popen
|
||||
plugins/modules/mysql_user.py validate-modules:undocumented-parameter
|
||||
plugins/module_utils/mysql.py pylint:unused-import
|
||||
plugins/module_utils/version.py pylint:unused-import
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
plugins/modules/mysql_db.py validate-modules:use-run-command-not-popen
|
||||
plugins/modules/mysql_user.py validate-modules:undocumented-parameter
|
||||
plugins/module_utils/mysql.py pylint:unused-import
|
||||
plugins/module_utils/version.py pylint:unused-import
|
||||
|
|
Loading…
Add table
Reference in a new issue