changes hostname to lowercase

pull/4420/head
Jonathan Mainguy 2015-05-21 09:32:12 -04:00 committed by Matt Clay
parent ce4c9cccf5
commit b25bc20d3d
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,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']