mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 07:01:22 -07:00
Merge pull request #3368 from j2sol/wait_for_improv
Improvements to wait_for module
This commit is contained in:
commit
6d5ac43dcb
1 changed files with 2 additions and 2 deletions
|
@ -92,11 +92,11 @@ def main():
|
||||||
port = int(params['port'])
|
port = int(params['port'])
|
||||||
state = params['state']
|
state = params['state']
|
||||||
|
|
||||||
|
start = datetime.datetime.now()
|
||||||
|
|
||||||
if delay:
|
if delay:
|
||||||
time.sleep(delay)
|
time.sleep(delay)
|
||||||
|
|
||||||
start = datetime.datetime.now()
|
|
||||||
|
|
||||||
if state == 'stopped':
|
if state == 'stopped':
|
||||||
### first wait for the host to go down
|
### first wait for the host to go down
|
||||||
end = start + datetime.timedelta(seconds=timeout)
|
end = start + datetime.timedelta(seconds=timeout)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue