diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-23 19:47:36 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-23 19:47:36 +0200 |
commit | 2b46011f06a3515dc7604059341ab9168fcfc508 (patch) | |
tree | 9836da43400355ac25c03852eca9eaee7eccc416 /ansible/roles/basics/tasks | |
parent | d22ac1f0d70acc7c7bb78f72538212494f089e00 (diff) |
build: Add a bunch of switches
Diffstat (limited to 'ansible/roles/basics/tasks')
-rw-r--r-- | ansible/roles/basics/tasks/main.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ansible/roles/basics/tasks/main.yml b/ansible/roles/basics/tasks/main.yml index a168afe..5dd5b5d 100644 --- a/ansible/roles/basics/tasks/main.yml +++ b/ansible/roles/basics/tasks/main.yml @@ -44,15 +44,18 @@ register: ip tags: - start + - test - name: workaround to get gondul-front-ip shell: "docker inspect gondul-front-test | grep IPAddress | sed 's/[^0-9.]//g' | grep 172.17 | uniq" register: ipfront tags: - start + - test - name: Display IP tags: - start + - test debug: msg: "Varnish test is available at http://{{ ip.stdout }}/ uncached ip: http://{{ ipfront.stdout }}/ " |