mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Fix Postgres user module always reporting changes (#23488)
This commit is contained in:
committed by
ansibot
parent
3b5dd4e0a0
commit
54316f7da0
@@ -292,7 +292,7 @@ def user_alter(cursor, module, user, password, role_attr_flags, encrypted, expir
|
||||
# Do we actually need to do anything?
|
||||
pwchanging = False
|
||||
if password is not None:
|
||||
if encrypted:
|
||||
if encrypted == 'ENCRYPTED':
|
||||
if password.startswith('md5'):
|
||||
if password != current_role_attrs['rolpassword']:
|
||||
pwchanging = True
|
||||
|
||||
Reference in New Issue
Block a user