Skip to content

Commit

Permalink
podman_login does not support check_mode
Browse files Browse the repository at this point in the history
The podman_login module does not have code to support check runs. Therefore a check run in ansible does the actual login. Set supports_check_mode to False so the login is skipped in a dry-run.
  • Loading branch information
mstinsky committed Oct 8, 2024
1 parent e46c7eb commit 468e9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/podman_login.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def main():
tlsverify=dict(type='bool'),
secret=dict(type='str', no_log=False),
),
supports_check_mode=True,
supports_check_mode=False,
required_by={
'password': 'username',
},
Expand Down

0 comments on commit 468e9b6

Please sign in to comment.