changes hostname to lowercase

This commit is contained in:
Jonathan Mainguy 2015-05-21 09:32:12 -04:00
parent e591763d62
commit 5a22f052b4

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']