aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/lisp-cp
AgeCommit message (Expand)AuthorFilesLines
2017-02-07LISP: reject remote mappings that have as locators local IPsFilip Tehlar1-0/+27
2017-02-02LISP: enhance binary part of some APIsFilip Tehlar2-44/+35
2017-01-30Fix LISP Coverity warningsFlorin Coras2-6/+16
2017-01-30LISP: add dump calls for GPE entries APIFilip Tehlar1-2/+1
2017-01-26Add option to use LISP Proxy-ETRFlorin Coras5-37/+349
2017-01-25Move LISP cp cli to separate fileFlorin Coras3-1415/+1460
2017-01-23LISP: add RLOC and map-notify countersFilip Tehlar1-20/+97
2017-01-16LISP: Enhance IPx offset computingFilip Tehlar1-31/+32
2017-01-10Fix LISP Coverity warningFlorin Coras1-1/+1
2017-01-04LISP: make data plane programming thread safeFilip Tehlar1-1/+30
2017-01-03LISP: fix EID additionFilip Tehlar1-2/+5
2017-01-03LISP: fix fwd entry additionFilip Tehlar1-1/+1
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion15-0/+11825
6'>36 37 38 39 40
---
# file: roles/iperf/tasks/main.yaml

- name: iPerf Install - Install Distribution - Release - Machine Prerequisites
  package:
    name: "{{ packages | flatten(levels=1) }}"
    state: latest
    update_cache: true
  tags:
    - install-dependencies

- name: iPerf Install - Get Release Archive
  get_url:
    url: "https://downloads.es.net/pub/iperf/iperf-{{ iperf_version }}.tar.gz"
    dest: "{{ iperf_target_dir }}/iperf-{{ iperf_version }}.tar.gz"
    mode: 0644
  tags:
    - install-iperf

- name: iPerf Install - Ensure Directory Exists
  file:
    path: "{{ iperf_target_dir }}/iperf-{{ iperf_version }}"
    state: "directory"
  tags:
    - install-iperf

- name: iPerf Install - Extract Release Archive
  unarchive:
    remote_src: true
    src: "{{ iperf_target_dir }}/iperf-{{ iperf_version }}.tar.gz"
    dest: "{{ iperf_target_dir }}/"
    creates: "{{ iperf_target_dir }}/iperf-{{ iperf_version }}/"
  tags:
    - install-iperf

- name: iPerf Install - Compile Release I
  shell: |
    cd "{{ iperf_target_dir }}/iperf-{{ iperf_version }}/" && ./configure && make && make install
  tags:
    - install-iperf