From 7a45cd51f5f6972a6e594e5ddc4d586aa2519486 Mon Sep 17 00:00:00 2001 From: betanummeric <40263343+betanummeric@users.noreply.github.com> Date: Tue, 31 May 2022 14:31:18 +0200 Subject: [PATCH] Update plugins/modules/mysql_user.py Co-authored-by: Andrew Klychkov --- plugins/modules/mysql_user.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/modules/mysql_user.py b/plugins/modules/mysql_user.py index 850908f..c85a910 100644 --- a/plugins/modules/mysql_user.py +++ b/plugins/modules/mysql_user.py @@ -119,9 +119,9 @@ options: - C(always) will update passwords if they differ. This affects I(password) and the combination of I(plugin), I(plugin_hash_string), I(plugin_auth_string). - C(on_create) will only set the password or the combination of plugin, plugin_hash_string, plugin_auth_string for newly created users. - "C(on_new_username) works like C(on_create), but it tries to reuse an existing password: If one different user - with the same username exists, or multiple different users with the same username and equal ``plugin`` and - ``authentication_string`` attribute, the existing ``plugin`` and ``authentication_string`` are used for the - new user instead of the C(password), I(plugin), I(plugin_hash_string) or I(plugin_auth_string) argument." + with the same username exists, or multiple different users with the same username and equal C(plugin) and + C(authentication_string) attribute, the existing C(plugin) and C(authentication_string) are used for the + new user instead of the I(password), I(plugin), I(plugin_hash_string) or I(plugin_auth_string) argument." type: str choices: [ always, on_create, on_new_username ] default: always