1
0
Fork 0
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:
Hagen Kuehn 2016-06-15 19:26:00 +01:00 committed by Matt Clay
parent 9fd52ac40e
commit 320aea77c6

View file

@ -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'),