Install barometer collectd container on all hosts
[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
16 - file: path="{{ INSTALL_BIN_PATH }}/trex" state=absent
17 - file: path="{{ INSTALL_BIN_PATH }}/trex" state=directory
18
19 - command: mv "{{ trex_dest }}/{{ trex_unarchive }}" "{{ INSTALL_BIN_PATH }}/trex/scripts"
20
21 # Don't overwrite igb_uio.ko compiled from DPDK
22
23 - name: fix stl __init__.py for python module
24   file:
25     path: "{{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane/stl/__init__.py"
26     state: touch
27
28 - name: "symlink client to {{ INSTALL_BIN_PATH }}/trex_client"
29   file:
30     src: "{{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane"
31     dest: "{{ INSTALL_BIN_PATH }}/trex_client"
32     state: link
33
34 - name: add scripts to PYTHONPATH
35   lineinfile:
36     dest: /etc/environment
37     regexp: "^PYTHONPATH="
38     line: "PYTHONPATH={{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane:{{ INSTALL_BIN_PATH }}/trex/scripts/automation/trex_control_plane/stl"
39     state: present
40     create: yes