Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a state parameter to the wait_for module. #937

Merged
merged 3 commits into from
Aug 24, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
55 changes: 40 additions & 15 deletions library/wait_for
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,57 @@ def main():

module = AnsibleModule(
argument_spec = dict(
name=dict(required=True),
host=dict(default='127.0.0.1'),
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

host = params['name']
host = params['host']
timeout = int(params['timeout'])
delay = int(params['delay'])
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:
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))
if state is 'stopped':
### first wait for the host to go down
end = datetime.datetime.now() + datetime.timedelta(seconds=timeout)

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
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
Expand Down