1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

podman_login does not support check_mode

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.

Signed-off-by: Maximilian Stinsky <maximilian@stinsky.com>
This commit is contained in:
Maximilian Stinsky 2024-10-08 12:41:52 +02:00
parent e46c7eb1a1
commit 61fa9673ff
No known key found for this signature in database

View file

@ -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',
},