summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Oosterveld <wouter@fizzyflux.nl>2016-11-29 20:15:17 +0100
committerJames Cammarata <jimi@sngx.net>2016-11-29 13:17:04 -0600
commit1a6a9ced61bf4ad2519351be53b15126f86f5821 (patch)
tree0556996593c0ad340dce5e7257b508eaeec7f9ce
parentad5cb0f0d7231ff74d7918faa26091ba710c4709 (diff)
downloadansible-modules-core-1a6a9ced61bf4ad2519351be53b15126f86f5821.tar.gz
mysql_user: fix user_mod on MySQL(-like) 5.7+ (Fixes #3003) (#5388)
(cherry picked from commit 30fb384e7fb9a94ac3929e4a650877e45d8834c9)
-rw-r--r--database/mysql/mysql_user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/mysql/mysql_user.py b/database/mysql/mysql_user.py
index 010cdce6..0e1276e4 100644
--- a/database/mysql/mysql_user.py
+++ b/database/mysql/mysql_user.py
@@ -293,7 +293,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted, new_priv, append
if old_user_mgmt:
cursor.execute("SET PASSWORD FOR %s@%s = PASSWORD(%s)", (user, host, password))
else:
- cursor.execute("ALTER USER %s@%s IDENTIFIED BY %s", (user, host, password))
+ cursor.execute("ALTER USER %s@%s IDENTIFIED WITH mysql_native_password BY %s", (user, host, password))
changed = True
# Handle privileges