mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +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_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'),
|
||||
|
||||
Reference in New Issue
Block a user