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:15:17 -0600
commit30fb384e7fb9a94ac3929e4a650877e45d8834c9 (patch)
tree6cfd89ab5652042397b8b6d7c8911b63f50a6552
parent0cb32a7b304e97b5ee04d8d3fa32d2f09302d837 (diff)
downloadansible-modules-core-30fb384e7fb9a94ac3929e4a650877e45d8834c9.tar.gz
mysql_user: fix user_mod on MySQL(-like) 5.7+ (Fixes #3003) (#5388)
-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 87e8318a..f3231c2f 100644
--- a/database/mysql/mysql_user.py
+++ b/database/mysql/mysql_user.py
@@ -339,7 +339,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