Merge pull request #830 from BlackMesh/devel

mysql_user #829: add update_password to mysql_user
This commit is contained in:
Brian Coca 2015-03-31 15:28:31 -04:00
commit c4a22478c4

View file

@ -93,6 +93,14 @@ options:
required: false required: false
default: false default: false
version_added: "1.3" version_added: "1.3"
update_password:
required: false
default: always
choices: ['always', 'on_create']
version_added: "1.9"
description:
- C(always) will update passwords if they differ. C(on_create) will only set the password for newly created users.
notes: notes:
- Requires the MySQLdb Python package on the remote host. For Ubuntu, this - Requires the MySQLdb Python package on the remote host. For Ubuntu, this
is as easy as apt-get install python-mysqldb. is as easy as apt-get install python-mysqldb.
@ -446,6 +454,7 @@ def main():
priv=dict(default=None), priv=dict(default=None),
append_privs=dict(type="bool", default="no"), append_privs=dict(type="bool", default="no"),
check_implicit_admin=dict(default=False), check_implicit_admin=dict(default=False),
update_password=dict(default="always", choices=["always", "on_create"]),
) )
) )
user = module.params["user"] user = module.params["user"]
@ -455,6 +464,7 @@ def main():
priv = module.params["priv"] priv = module.params["priv"]
check_implicit_admin = module.params['check_implicit_admin'] check_implicit_admin = module.params['check_implicit_admin']
append_privs = module.boolean(module.params["append_privs"]) append_privs = module.boolean(module.params["append_privs"])
update_password = module.params['update_password']
if not mysqldb_found: if not mysqldb_found:
module.fail_json(msg="the python mysqldb module is required") module.fail_json(msg="the python mysqldb module is required")
@ -497,7 +507,11 @@ def main():
if state == "present": if state == "present":
if user_exists(cursor, user, host): if user_exists(cursor, user, host):
try: try:
changed = user_mod(cursor, user, host, password, priv, append_privs) if update_password == 'always':
changed = user_mod(cursor, user, host, password, priv, append_privs)
else:
changed = user_mod(cursor, user, host, None, priv, append_privs)
except (SQLParseError, InvalidPrivsError, MySQLdb.Error), e: except (SQLParseError, InvalidPrivsError, MySQLdb.Error), e:
module.fail_json(msg=str(e)) module.fail_json(msg=str(e))
else: else: