Commit f5b9e4de by Michael DeHaan

Merge pull request #2543 from b6d/postgresql_user-docfix

postgresql_user: fix docstrings
parents 1ad61b3e 8456cb8e
...@@ -86,7 +86,7 @@ options: ...@@ -86,7 +86,7 @@ options:
"[NO]INHERIT", "[NO]LOGIN", "[NO]REPLICATION" ] "[NO]INHERIT", "[NO]LOGIN", "[NO]REPLICATION" ]
state: state:
description: description:
- The database state - The user (role) state
required: false required: false
default: present default: present
choices: [ "present", "absent" ] choices: [ "present", "absent" ]
...@@ -141,13 +141,13 @@ def user_exists(cursor, user): ...@@ -141,13 +141,13 @@ def user_exists(cursor, user):
def user_add(cursor, user, password, role_attr_flags): def user_add(cursor, user, password, role_attr_flags):
"""Create a new user with write access to the database""" """Create a new database user (role)."""
query = "CREATE USER \"%(user)s\" with PASSWORD '%(password)s' %(role_attr_flags)s" query = "CREATE USER \"%(user)s\" with PASSWORD '%(password)s' %(role_attr_flags)s"
cursor.execute(query % {"user": user, "password": password, "role_attr_flags": role_attr_flags}) cursor.execute(query % {"user": user, "password": password, "role_attr_flags": role_attr_flags})
return True return True
def user_alter(cursor, user, password, role_attr_flags): def user_alter(cursor, user, password, role_attr_flags):
"""Change user password""" """Change user password and/or attributes. Return True if changed, False otherwise."""
changed = False changed = False
if user == 'PUBLIC': if user == 'PUBLIC':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment