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:
parent
9a993992be
commit
02171711fa
1 changed files with 1 additions and 1 deletions
|
@ -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'])
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue