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
4816644b
Commit
4816644b
authored
Aug 24, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #937 from jhoekx/wait-state
Add a state parameter to the wait_for module.
parents
165f4b51
81c9a0cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
15 deletions
+40
-15
library/wait_for
+40
-15
No files found.
library/wait_for
View file @
4816644b
...
@@ -27,32 +27,57 @@ def main():
...
@@ -27,32 +27,57 @@ def main():
module
=
AnsibleModule
(
module
=
AnsibleModule
(
argument_spec
=
dict
(
argument_spec
=
dict
(
name
=
dict
(
required
=
True
),
host
=
dict
(
default
=
'127.0.0.1'
),
timeout
=
dict
(
default
=
300
),
timeout
=
dict
(
default
=
300
),
port
=
dict
(
default
=
22
),
delay
=
dict
(
default
=
0
),
port
=
dict
(
required
=
True
),
state
=
dict
(
default
=
'started'
,
choices
=
[
'started'
,
'stopped'
]),
),
),
)
)
params
=
module
.
params
params
=
module
.
params
host
=
params
[
'
name
'
]
host
=
params
[
'
host
'
]
timeout
=
int
(
params
[
'timeout'
])
timeout
=
int
(
params
[
'timeout'
])
delay
=
int
(
params
[
'delay'
])
port
=
int
(
params
[
'port'
])
port
=
int
(
params
[
'port'
])
state
=
params
[
'state'
]
end
=
datetime
.
datetime
.
now
()
+
datetime
.
timedelta
(
seconds
=
timeout
)
if
delay
:
time
.
sleep
(
delay
)
while
datetime
.
datetime
.
now
()
<
end
:
if
state
is
'stopped'
:
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
### first wait for the host to go down
try
:
end
=
datetime
.
datetime
.
now
()
+
datetime
.
timedelta
(
seconds
=
timeout
)
s
.
connect
(
(
host
,
port
)
)
s
.
close
()
break
except
:
time
.
sleep
(
1
)
else
:
module
.
fail_json
(
msg
=
"Timeout when waiting for
%
s"
%
(
host
))
module
.
exit_json
(
msg
=
"
%
s responds on
%
s"
%
(
host
,
port
))
while
datetime
.
datetime
.
now
()
<
end
:
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
s
.
settimeout
(
5
)
try
:
s
.
connect
(
(
host
,
port
)
)
s
.
close
()
time
.
sleep
(
1
)
except
:
break
else
:
module
.
fail_json
(
msg
=
"Timeout when waiting for
%
s to stop."
%
(
host
))
if
state
is
'started'
:
### wait for the host to come up
end
=
datetime
.
datetime
.
now
()
+
datetime
.
timedelta
(
seconds
=
timeout
)
while
datetime
.
datetime
.
now
()
<
end
:
s
=
socket
.
socket
(
socket
.
AF_INET
,
socket
.
SOCK_STREAM
)
try
:
s
.
connect
(
(
host
,
port
)
)
s
.
close
()
break
except
:
time
.
sleep
(
1
)
else
:
module
.
fail_json
(
msg
=
"Timeout when waiting for
%
s"
%
(
host
))
module
.
exit_json
(
state
=
state
,
port
=
port
)
# this is magic, see lib/ansible/module_common.py
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
...
...
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