aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml
diff options
context:
space:
mode:
authorpmikus <peter.mikus@protonmail.ch>2024-01-17 11:45:05 +0000
committerPeter Mikus <peter.mikus@protonmail.ch>2024-01-23 06:59:20 +0000
commitc86e36b1c19e21444e1bb6a9a65fc8f66f68bb04 (patch)
tree5d7e59014716bc2e02ede30a031f220dbe900824 /fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml
parent455bd62382842c10b5c39c343554f7f40e47ebeb (diff)
feat(device): Add 1n-alt vpp device
Signed-off-by: Peter Mikus <peter.mikus@protonmail.ch> Change-Id: I3d2bb0408f15fd14989d1179d7f08710a3d86e67
Diffstat (limited to 'fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml')
-rw-r--r--fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml23
1 files changed, 0 insertions, 23 deletions
diff --git a/fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml b/fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml
deleted file mode 100644
index 618a65ad7f..0000000000
--- a/fdio.infra.ansible/roles/vpp_device/tasks/thunderx2.yaml
+++ /dev/null
@@ -1,23 +0,0 @@
----
-# file: tasks/thunderx2.yaml
-
-- name: Load Kernel Modules On Startup (vfio-pci)
- ansible.builtin.lineinfile:
- path: "/etc/modules"
- state: "present"
- line: "{{ item }}"
- with_items:
- - "vfio-pci"
- tags:
- - load-kernel-modules
-
-- name: Disable Kernel Modules On Startup (cppc_cpufreq)
- ansible.builtin.lineinfile:
- path: "/etc/modprobe.d/blacklist-cppc_cpufreq.conf"
- state: "present"
- line: "{{ item }}"
- create: "yes"
- with_items:
- - "blacklist cppc_cpufreq"
- tags:
- - disable-kernel-modules