blob: 93847849c585d15705f86f63fce9f3dbf0e75ec2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
---
# file: roles/sut/tasks/main.yaml
- name: Install distribution - release - machine prerequisites
include_tasks: '{{ ansible_distribution|lower }}_{{ ansible_distribution_release }}.yaml'
- 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
|