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

Fix doc defaults for podman_image (#151)

This commit is contained in:
Sergey 2020-12-08 12:31:57 +02:00 committed by GitHub
parent a35c9cc8ca
commit fecc0739d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,6 +50,7 @@ DOCUMENTATION = r'''
- Whether or not to force push or pull an image.
- When building, force the build even if the image already exists.
type: bool
default: False
state:
description:
- Whether an image should be present, absent, or built.
@ -715,7 +716,7 @@ def main():
default={},
options=dict(
annotation=dict(type='dict'),
force_rm=dict(type='bool'),
force_rm=dict(type='bool', default=False),
format=dict(
type='str',
choices=['oci', 'docker'],