summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2015-03-18 14:05:27 -0700
committerToshio Kuratomi <toshio@fedoraproject.org>2015-03-19 13:53:10 -0700
commit4009c053f7c9a7ad91ca16088e0d727a8dbc3b97 (patch)
treed192fb9915b1e535de7e9e93320cfcca04c6043b
parentc571a0e6ea7587a983086cbaf6a6f5257be91202 (diff)
downloadansible-4009c053f7c9a7ad91ca16088e0d727a8dbc3b97.tar.gz
Fix the removal of busybox image
-rw-r--r--test/integration/roles/test_docker/tasks/registry-tests.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/roles/test_docker/tasks/registry-tests.yml b/test/integration/roles/test_docker/tasks/registry-tests.yml
index fea9bdabf7..e8f0596171 100644
--- a/test/integration/roles/test_docker/tasks/registry-tests.yml
+++ b/test/integration/roles/test_docker/tasks/registry-tests.yml
@@ -20,7 +20,7 @@
command: "docker push localhost:5000/mine"
- name: Remove the busybox image from the local docker
- command: "docker rmi -f busybox"
+ command: "docker rmi -f {{ image_id.stdout_lines[0] }}"
- name: Remove the new image from the local docker
command: "docker rmi -f localhost:5000/mine"