Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
70abc6f6
Commit
70abc6f6
authored
Jun 20, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7374 from hfinucane/wait_for_pipes
Allow wait_for to wait on non-traditional files
parents
41131149
6efc8008
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
14 deletions
+23
-14
library/utilities/wait_for
+23
-14
No files found.
library/utilities/wait_for
View file @
70abc6f6
...
@@ -177,20 +177,29 @@ def main():
...
@@ -177,20 +177,29 @@ def main():
while
datetime
.
datetime
.
now
()
<
end
:
while
datetime
.
datetime
.
now
()
<
end
:
if
path
:
if
path
:
try
:
try
:
f
=
open
(
path
)
os
.
stat
(
path
)
try
:
if
search_regex
:
if
search_regex
:
try
:
if
re
.
search
(
search_regex
,
f
.
read
(),
re
.
MULTILINE
):
f
=
open
(
path
)
break
try
:
else
:
if
re
.
search
(
search_regex
,
f
.
read
(),
re
.
MULTILINE
):
time
.
sleep
(
1
)
break
else
:
else
:
break
time
.
sleep
(
1
)
finally
:
finally
:
f
.
close
()
f
.
close
()
except
IOError
:
except
IOError
:
time
.
sleep
(
1
)
time
.
sleep
(
1
)
pass
pass
else
:
break
except
OSError
,
e
:
# File not present
if
os
.
errno
==
2
:
time
.
sleep
(
1
)
else
:
elapsed
=
datetime
.
datetime
.
now
()
-
start
module
.
fail_json
(
msg
=
"Failed to stat
%
s,
%
s"
%
(
path
,
e
.
strerror
),
elapsed
=
elapsed
.
seconds
)
elif
port
:
elif
port
:
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
.
settimeout
(
connect_timeout
)
s
.
settimeout
(
connect_timeout
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment