aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/install_dpdk/tasks/main.yml
diff options
context:
space:
mode:
authorJohn O Loughlin <john.oloughlin@intel.com>2018-04-04 11:53:20 +0100
committerJohn O'Loughlin <john.oloughlin@intel.com>2018-04-11 10:34:04 +0000
commita78a2979e872c64800f77683f1bf3b0162b87715 (patch)
treeb1d97d62b09278ff060aa6c41255d7bd85781b95 /ansible/roles/install_dpdk/tasks/main.yml
parentee9995c42368ee04ba06cd101b086c57dbbb3bba (diff)
Add support for dpdk 17.05
Add support for dpdk 17.05. Add option to dpdk scripts to download dpdk 17.08 17.11 and 18.02. These are currently unsupported due to prox build issues. JIRA: YARDSTICK-1113 Change-Id: I585566364a4d1f04a696439af96c50c0e9d38033 Signed-off-by: John O Loughlin <john.oloughlin@intel.com>
Diffstat (limited to 'ansible/roles/install_dpdk/tasks/main.yml')
-rw-r--r--ansible/roles/install_dpdk/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/roles/install_dpdk/tasks/main.yml b/ansible/roles/install_dpdk/tasks/main.yml
index e82ad8363..5bcfb50b1 100644
--- a/ansible/roles/install_dpdk/tasks/main.yml
+++ b/ansible/roles/install_dpdk/tasks/main.yml
@@ -116,7 +116,7 @@
- name: copy dpdk-devbind.py to correct location
copy:
- src: "{{ dpdk_devbind[dpdk_version] }}"
+ src: "{{ dpdk_devbind_usertools if dpdk_version|float >= 17.02 else dpdk_devbind_tools }}"
dest: "{{ INSTALL_BIN_PATH }}/dpdk-devbind.py"
remote_src: yes
force: yes