blob: f5a2dd86ad923fc75ea0f6209b7332921adf5e96 (
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: Ubuntu specific
import_tasks: ubuntu.yaml
when: ansible_distribution|lower == 'ubuntu'
- 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
|