Remove debug statements

This commit is contained in:
Toshio Kuratomi 2015-03-17 14:40:43 -07:00
parent 2cfeec3683
commit 259744d5f4

View file

@ -21,20 +21,14 @@
shell: "docker ps | grep busybox | awk '{ print $1 }'"
register: container_id
- debug: var=container_id
- name: Get the docker container ip
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
register: container_ip
- debug: var=container_ip
- name: Try to access the server
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
register: docker_output
- debug: var=docker_output
- name: check that the script ran
assert:
that: