Merge pull request #1390 from Jmainguy/mysql_user_lowercase

changes hostname to lowercase
This commit is contained in:
Toshio Kuratomi 2015-05-21 07:16:14 -07:00
commit 0860505770

View file

@ -396,7 +396,7 @@ def main():
login_password = module.params["login_password"]
user = module.params["user"]
password = module.params["password"]
host = module.params["host"]
host = module.params["host"].lower()
state = module.params["state"]
priv = module.params["priv"]
check_implicit_admin = module.params['check_implicit_admin']