aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/sut/tasks/main.yaml
blob: ffdbbcc860810b7472dffc44afd83c2a5e676629 (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