blob: 5ffebee6da925c69a66b1b36180885c275381245 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
#
- name: copy user_sfc_scenarios_variables.yml (SUSE)
copy:
src: "{{xci_flavor}}/user_sfc_scenarios_variables_suse.yml"
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"
dest: "{{openstack_osa_etc_path}}/user_sfc_scenarios_variables.yml"
when: ansible_pkg_mgr == 'apt'
# To get the mano_host variable (can only be defined here for the inventory)
- name: copy openstack_user_config.yml
copy:
src: "tacker_files/{{xci_flavor}}/openstack_user_config.yml"
dest: "{{openstack_osa_etc_path}}/openstack_user_config.yml"
|