aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/azure/tasks/main.yaml
blob: 38c0b7c7f84301dfcdbbad5e1789878bfe3fe559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
# file: roles/azure/tasks/main.yaml

- name: Azure - Load Kernel Modules By Default
  lineinfile:
    path: "/etc/modules"
    state: "present"
    line: "{{ item }}"
  with_items:
    - "vfio-pci"
    - "ib_uverbs"
    - "mlx4_ib"
    - "mlx5_ib"
  tags:
    - load-kernel-modules