summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Gifford <sgifford@blackmesh.com>2015-02-20 12:30:27 -0500
committerSolomon Gifford <sgifford@blackmesh.com>2015-02-20 12:30:27 -0500
commit35434f9672f3121549f6a88358ed73a696e94d4f (patch)
treeb210551b2a6c6dbf5f08e383f62e70903525f903
parent3a02f31e341537d6d327c8063ebec33f68ecf8b4 (diff)
downloadansible-modules-core-35434f9672f3121549f6a88358ed73a696e94d4f.tar.gz
mysql_user #829: add update_password to mysql_user
-rw-r--r--database/mysql/mysql_user.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/database/mysql/mysql_user.py b/database/mysql/mysql_user.py
index 3590fb8e..a9b7b222 100644
--- a/database/mysql/mysql_user.py
+++ b/database/mysql/mysql_user.py
@@ -93,6 +93,14 @@ options:
required: false
default: false
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:
- Requires the MySQLdb Python package on the remote host. For Ubuntu, this
is as easy as apt-get install python-mysqldb.
@@ -446,6 +454,7 @@ def main():
priv=dict(default=None),
append_privs=dict(type="bool", default="no"),
check_implicit_admin=dict(default=False),
+ update_password=dict(default="always", choices=["always", "on_create"]),
)
)
user = module.params["user"]
@@ -455,6 +464,7 @@ def main():
priv = module.params["priv"]
check_implicit_admin = module.params['check_implicit_admin']
append_privs = module.boolean(module.params["append_privs"])
+ update_password = module.params['update_password']
if not mysqldb_found:
module.fail_json(msg="the python mysqldb module is required")
@@ -497,7 +507,11 @@ def main():
if state == "present":
if user_exists(cursor, user, host):
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:
module.fail_json(msg=str(e))
else: