mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fixed unknown type <type 'list'> error (#3959)
This commit is contained in:
parent
9fd52ac40e
commit
320aea77c6
1 changed files with 1 additions and 1 deletions
|
@ -1894,7 +1894,7 @@ def main():
|
|||
restart_policy=dict(type='str', choices=['no', 'on-failure', 'always', 'unless-stopped']),
|
||||
restart_retries=dict(type='int', default=0),
|
||||
shm_size=dict(type='str'),
|
||||
security_opts=dict(type=list),
|
||||
security_opts=dict(type='list'),
|
||||
state=dict(type='str', choices=['absent', 'present', 'started', 'stopped'], default='started'),
|
||||
stop_signal=dict(type='str'),
|
||||
stop_timeout=dict(type='int'),
|
||||
|
|
Loading…
Reference in a new issue