mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
fixed unknown type <type 'list'> error (#3959)
This commit is contained in:
@@ -1894,7 +1894,7 @@ def main():
|
|||||||
restart_policy=dict(type='str', choices=['no', 'on-failure', 'always', 'unless-stopped']),
|
restart_policy=dict(type='str', choices=['no', 'on-failure', 'always', 'unless-stopped']),
|
||||||
restart_retries=dict(type='int', default=0),
|
restart_retries=dict(type='int', default=0),
|
||||||
shm_size=dict(type='str'),
|
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'),
|
state=dict(type='str', choices=['absent', 'present', 'started', 'stopped'], default='started'),
|
||||||
stop_signal=dict(type='str'),
|
stop_signal=dict(type='str'),
|
||||||
stop_timeout=dict(type='int'),
|
stop_timeout=dict(type='int'),
|
||||||
|
|||||||
Reference in New Issue
Block a user