aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/intel/tasks/ice.yaml
diff options
context:
space:
mode:
authorJuraj Linkeš <juraj.linkes@pantheon.tech>2021-07-23 13:20:52 +0200
committerJuraj Linkeš <juraj.linkes@pantheon.tech>2021-07-23 15:31:53 +0200
commit5a1f1b7fa58c082dd359a7b4df700f5df3839bfd (patch)
treedc76c43f1b431821e53b6b0efc7c5d15dfb250ff /fdio.infra.ansible/roles/intel/tasks/ice.yaml
parent1da19da813655f643bc3c6e4d03bed987f076f07 (diff)
Ansible: iavf driver install
* move iavf driver install from vpp_device to intel role * differentiate the names of tasks of various drivers to get better ansible logs * add .5 sleep when creating VFs with iavf to avoid improper init * fix install commands * add XL710QDA2 NIC to supported i40e NICs Change-Id: Id50e1552a322b9473e58222bfed3405d2d73c824 Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Diffstat (limited to 'fdio.infra.ansible/roles/intel/tasks/ice.yaml')
-rw-r--r--fdio.infra.ansible/roles/intel/tasks/ice.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/fdio.infra.ansible/roles/intel/tasks/ice.yaml b/fdio.infra.ansible/roles/intel/tasks/ice.yaml
index 92a0eb4d7d..e3aff34cfe 100644
--- a/fdio.infra.ansible/roles/intel/tasks/ice.yaml
+++ b/fdio.infra.ansible/roles/intel/tasks/ice.yaml
@@ -1,7 +1,7 @@
---
# file: roles/intel/tasks/ice.yaml
-- name: Inst - Get Network Adapter Driver
+- name: Inst - Get ice Network Adapter Driver
get_url:
url: "{{ intel_ice_driver_url }}"
dest: "{{ intel_ice_driver_dir }}/ice-{{ intel_ice_version }}.tar.gz"
@@ -9,7 +9,7 @@
tags:
- intel-inst
-- name: Inst - Extract Network Adapter Driver
+- name: Inst - Extract ice Network Adapter Driver
unarchive:
remote_src: true
src: "{{ intel_ice_driver_dir }}/ice-{{ intel_ice_version }}.tar.gz"
@@ -19,8 +19,8 @@
tags:
- intel-inst
-- name: Inst - Network Adapter Driver
- command: "make install; modprobe -r ice; modprobe ice"
+- name: Inst - ice Network Adapter Driver
+ command: "make install && modprobe -r ice && modprobe ice"
args:
chdir: "{{ intel_ice_driver_dir }}/ice-{{ intel_ice_version }}/src"
failed_when: no