code review fixes per #957

This commit is contained in:
tedder 2015-03-30 15:51:54 -07:00 committed by Matt Clay
parent 0c1624f9b7
commit 9fd568f655

View file

@ -117,8 +117,9 @@ options:
description: description:
- if C(yes), don't inspect database for password changes. Effective when C(pg_authid) is not accessible (such as AWS RDS). Otherwise, make password changes as necessary. - if C(yes), don't inspect database for password changes. Effective when C(pg_authid) is not accessible (such as AWS RDS). Otherwise, make password changes as necessary.
required: false required: false
default: 'yes' default: 'no'
choices: [ "yes", "no" ] choices: [ "yes", "no" ]
version_added: '2.0'
notes: notes:
- The default authentication assumes that you are either logging in as or - The default authentication assumes that you are either logging in as or
sudo'ing to the postgres account on the host. sudo'ing to the postgres account on the host.
@ -492,7 +493,7 @@ def main():
module.fail_json(msg="privileges require a database to be specified") module.fail_json(msg="privileges require a database to be specified")
privs = parse_privs(module.params["priv"], db) privs = parse_privs(module.params["priv"], db)
port = module.params["port"] port = module.params["port"]
no_password_changes = module.params.get("no_password_changes", False) no_password_changes = module.params["no_password_changes"]
try: try:
role_attr_flags = parse_role_attrs(module.params["role_attr_flags"]) role_attr_flags = parse_role_attrs(module.params["role_attr_flags"])
except InvalidFlagsError, e: except InvalidFlagsError, e: