1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix wait_for default value to follow the documentation (documentation = 180, default value = 120)

This commit is contained in:
Charles Blonde 2013-09-08 23:38:48 +02:00
parent 9a993992be
commit 02171711fa

View file

@ -220,7 +220,7 @@ def main():
nics = dict(default=None),
meta = dict(default=None),
wait = dict(default='yes', choices=['yes', 'no']),
wait_for = dict(default=120),
wait_for = dict(default=180),
state = dict(default='present', choices=['absent', 'present'])
),
)