blob: 0ecdcdba3b40f128aa8f53e271a31def9323f63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
# file: roles/sut/tasks/main.yaml
- name: Ubuntu specific
import_tasks: ubuntu_x86_64.yaml
when: ansible_distribution|lower == 'ubuntu' and ansible_machine == 'x86_64'
- name: Copy 80-vpp.conf
file:
src: '/dev/null'
dest: '/etc/sysctl.d/80-vpp.conf'
state: 'link'
become: yes
tags: copy-80-vpp
|