aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/sut/tasks/main.yaml
blob: e4115e485d42d7382c76905536fddf9316e3c600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
# file: roles/sut/tasks/main.yaml

- name: Install distribution - release - machine prerequisites
  include_tasks: '{{ ansible_distribution|lower }}_{{ ansible_distribution_release }}.yaml'
  tags: [ install-csit-dependencies, install-kernel-image ]

- name: Taishan aarch64 specific
  import_tasks: taishan_workaround.yaml
  when: taishan_workaround is defined

- name: Copy 80-vpp.conf
  file:
    src: '/dev/null'
    dest: '/etc/sysctl.d/80-vpp.conf'
    state: 'link'
  become: yes
  tags: copy-80-vpp

- name: Install DPDK
  include_tasks: 'dpdk.yaml'
  tags: install-dpdk