Fix 'wait_for' doesn't work with ipv6only host
This commit is contained in:
parent
0d551d8d24
commit
659c6d3a7e
1 changed files with 2 additions and 6 deletions
|
@ -351,10 +351,8 @@ def main():
|
|||
except IOError:
|
||||
break
|
||||
elif port:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
s.settimeout(connect_timeout)
|
||||
try:
|
||||
s.connect( (host, port) )
|
||||
s = socket.create_connection( (host, port), connect_timeout)
|
||||
s.shutdown(socket.SHUT_RDWR)
|
||||
s.close()
|
||||
time.sleep(1)
|
||||
|
@ -397,10 +395,8 @@ def main():
|
|||
elapsed = datetime.datetime.now() - start
|
||||
module.fail_json(msg="Failed to stat %s, %s" % (path, e.strerror), elapsed=elapsed.seconds)
|
||||
elif port:
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
s.settimeout(connect_timeout)
|
||||
try:
|
||||
s.connect( (host, port) )
|
||||
s = socket.create_connection( (host, port), connect_timeout)
|
||||
if search_regex:
|
||||
data = ''
|
||||
matched = False
|
||||
|
|
Loading…
Add table
Reference in a new issue