Merge "Add common openstack opertation scenarios: volume & floating ip"
[yardstick.git] / ansible / roles / install_trex / tasks / main.yml
1 # Copyright (c) 2017 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - set_fact:
16     trex_file: "{{ trex_url|basename|regex_replace('[.]tar.gz', '') }}"
17
18
19 - file: path="{{ INSTALL_BIN_PATH }}/trex" state=absent
20 - file: path="{{ INSTALL_BIN_PATH }}/trex" state=directory
21
22
23 - command: mv "{{ clone_dest }}/{{ trex_unarchive }}" "{{ INSTALL_BIN_PATH }}/trex/scripts"
24
25 - file: path="{{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane/stl/__init__.py" state=touch
26
27 # Don't use trex/scripts/dpdk_nic_bind.py use DPDK usertools/dpdk-devbind.py
28 #- command: cp "{{ INSTALL_BIN_PATH }}/trex/scripts/dpdk_nic_bind.py" "{{ INSTALL_BIN_PATH }}"
29
30 - name: add scripts to PYTHONPATH
31   lineinfile:
32     dest: /etc/environment
33     regexp: "^PYTHONPATH="
34     line: "PYTHONPATH={{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane:{{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane/stl"
35     state: present
36     create: yes