diff options
Diffstat (limited to 'ansible/roles/basics')
-rw-r--r-- | ansible/roles/basics/tasks/main.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ansible/roles/basics/tasks/main.yml b/ansible/roles/basics/tasks/main.yml index a0d2e13..dc13f2e 100644 --- a/ansible/roles/basics/tasks/main.yml +++ b/ansible/roles/basics/tasks/main.yml @@ -30,17 +30,17 @@ state: started net: bridge links: "{{ item.links }}" - volumes: [ "{{ pwd.stdout }}/:/opt/nms" ] + volumes: [ "{{ pwd.stdout }}/:/opt/gondul" ] with_items: "{{ images }}" tags: - start -- name: workaround to get nms-varnish-front-ip - shell: "docker inspect nms-varnish-test | grep IPAddress | sed 's/[^0-9.]//g'" +- name: workaround to get gondul-varnish-front-ip + shell: "docker inspect gondul-varnish | grep IPAddress | sed 's/[^0-9.]//g'" register: ip tags: - start -- name: workaround to get nms-front-ip - shell: "docker inspect nms-front-test | grep IPAddress | sed 's/[^0-9.]//g'" +- name: workaround to get gondul-front-ip + shell: "docker inspect gondul-front | grep IPAddress | sed 's/[^0-9.]//g'" register: ipfront tags: - start |