blob: a882001868235b359d0a05bf6e83c81d3563227f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
# 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: 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
|