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:
parent
e46c7eb1a1
commit
61fa9673ff
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue