From 6c11ccaa5e9f036a1b56926d80aaccb3dc5e3d78 Mon Sep 17 00:00:00 2001 From: Venkata Harshavardhan Reddy Allu Date: Fri, 26 Oct 2018 20:01:37 +0530 Subject: Improve ansible tasks and fix license headers This patch does two things: 1. improve the ansible tasks: - register Openstack as VIM - create osmrc file - install OSM (master) 2. fix license headers in unit tests installer-type:osa deploy-scenario:os-odl-sfc_osm Change-Id: I02297dae2b0108397541cedeb2f47183f1df99fc Signed-off-by: Venkata Harshavardhan Reddy Allu --- scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/post-deployment.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/post-deployment.yml') diff --git a/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/post-deployment.yml b/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/post-deployment.yml index c462065e..a181ce77 100644 --- a/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/post-deployment.yml +++ b/scenarios/os-odl-sfc_osm/role/os-odl-sfc_osm/tasks/post-deployment.yml @@ -18,11 +18,10 @@ include: register-vim.yml # fetch ODL variables for functest -- name: "Fetch the ip of the neutron server container" +- name: Fetch the ip of the neutron server container shell: 'grep controller00_neutron_server_container -n1 /etc/openstack_deploy/openstack_inventory.json | grep ansible_host | cut -d":" -f2 | cut -d "\"" -f2' register: ip changed_when: False - - name: Fetch the ml2_conf.ini to process ODL variables command: "scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no {{ ip.stdout }}:/etc/neutron/plugins/ml2/ml2_conf.ini /tmp/ml2_conf.ini" changed_when: False -- cgit 1.2.3-korg