Skip to content

Commit

Permalink
Fix linting issues (#781)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored Dec 12, 2024
1 parent ebb0107 commit 6d12f71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/postgresql_ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
register: result
# If you need to fail when the server is not available,
# uncomment the following line:
#failed_when: not result.is_available
# failed_when: not result.is_available
# You can use the registered result with another task
- name: This task should be executed only if the server is available
Expand Down
1 change: 0 additions & 1 deletion plugins/modules/postgresql_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@
community.postgresql.postgresql_set:
name: TimeZone
value: 'Europe/Paris'
'''

RETURN = r'''
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/postgresql_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@
# password: SCRAM-SHA-256$4096:zFuajwIVdli9mK=NJkcv1Q++$JC4gWIrEHmF6sqRbEiZw5FFW45HUPrpVzNdoM72o730+;fqA4vLN3mCZGbhcbQyvNYY7anCrUTsem1eCh/4YA94=
role_attr_flags: CREATEDB,NOSUPERUSER
# When using sha256-hashed password:
#environment:
# PGOPTIONS: "-c password_encryption=scram-sha-256"
# environment:
# PGOPTIONS: "-c password_encryption=scram-sha-256"
# This example uses the 'priv' argument which is deprecated.
# You should use the 'postgresql_privs' module instead.
Expand Down

0 comments on commit 6d12f71

Please sign in to comment.