From 437368fe23c82fc4a344e4044363adb44e529fdf Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Tue, 3 Apr 2018 11:49:09 +0200 Subject: Provide support for different ODL versions We should be able to deploy with different ODL versions if the user defines the ODL_VERSION variable when deploying XCI. Change-Id: Ied20959116fed19bf4445f1544883ed0dc579dfb Signed-off-by: Manuel Buil --- .../os-odl-sfc/role/os-odl-sfc/tasks/copy-OSA-files-master.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scenarios/os-odl-sfc/role/os-odl-sfc/tasks/copy-OSA-files-master.yml') diff --git a/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/copy-OSA-files-master.yml b/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/copy-OSA-files-master.yml index 5ffebee6..fbaa7301 100644 --- a/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/copy-OSA-files-master.yml +++ b/scenarios/os-odl-sfc/role/os-odl-sfc/tasks/copy-OSA-files-master.yml @@ -2,14 +2,14 @@ # - name: copy user_sfc_scenarios_variables.yml (SUSE) - copy: - src: "{{xci_flavor}}/user_sfc_scenarios_variables_suse.yml" + template: + src: "{{xci_flavor}}/user_sfc_scenarios_variables_suse.yml.j2" dest: "{{openstack_osa_etc_path}}/user_sfc_scenarios_variables.yml" when: ansible_pkg_mgr == 'zypper' - name: copy user_sfc_scenarios_variables.yml (Ubuntu) - copy: - src: "{{xci_flavor}}/user_sfc_scenarios_variables_ubuntu.yml" + template: + src: "{{xci_flavor}}/user_sfc_scenarios_variables_ubuntu.yml.j2" dest: "{{openstack_osa_etc_path}}/user_sfc_scenarios_variables.yml" when: ansible_pkg_mgr == 'apt' -- cgit 1.2.3-korg