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:
parent
a35c9cc8ca
commit
fecc0739d6
1 changed files with 2 additions and 1 deletions
|
|
@ -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'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue