diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-09-30 08:06:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-30 08:06:59 +0000 |
commit | 3b675c32c89e8b4ff3e76397f057deaa0cca8c01 (patch) | |
tree | ad16692d116f949484852442f6468a0e2c22c392 /ansible/roles/install_dpdk | |
parent | 2dd6004f6eace58e97c4aa87b8a80b5f099d9f73 (diff) | |
parent | 862546eb151b24c10d26f20bc45ee572679e3d07 (diff) |
Merge "replace ansible modules"
Diffstat (limited to 'ansible/roles/install_dpdk')
-rw-r--r-- | ansible/roles/install_dpdk/tasks/main.yml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/ansible/roles/install_dpdk/tasks/main.yml b/ansible/roles/install_dpdk/tasks/main.yml index e189eb629..01ad4baf1 100644 --- a/ansible/roles/install_dpdk/tasks/main.yml +++ b/ansible/roles/install_dpdk/tasks/main.yml @@ -36,13 +36,9 @@ set_fact: RTE_KERNELDIR: "/lib/modules/{{ dpdk_kernel }}/build" -- my_make: +- command: make -j {{ ansible_processor_vcpus }} config T={{ dpdk_make_arch }} O={{ dpdk_make_arch }} + args: chdir: "{{ dpdk_path }}" - target: config - params: - T: "{{ dpdk_make_arch }}" - O: "{{ dpdk_make_arch }}" - extra_args: "-j {{ ansible_processor_vcpus }}" environment: RTE_KERNELDIR: "{{ RTE_KERNELDIR }}" @@ -85,14 +81,15 @@ # TODO: disable ASLR -- my_make: +- name: make dpdk + command: make -j {{ ansible_processor_vcpus }} + args: chdir: "{{ dpdk_path }}/{{ dpdk_make_arch}}" - extra_args: "-j {{ ansible_processor_vcpus }}" environment: RTE_KERNELDIR: "{{ RTE_KERNELDIR }}" #- name: make install DPDK into /usr for collectd and other programs -# my_make: +# make: # chdir: "{{ dpdk_path }}/{{ dpdk_make_arch}}" # target: install # params: "T={{ RTE_TARGET }}" |