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_samplevnf/tasks | |
parent | 2dd6004f6eace58e97c4aa87b8a80b5f099d9f73 (diff) | |
parent | 862546eb151b24c10d26f20bc45ee572679e3d07 (diff) |
Merge "replace ansible modules"
Diffstat (limited to 'ansible/roles/install_samplevnf/tasks')
-rw-r--r-- | ansible/roles/install_samplevnf/tasks/main.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ansible/roles/install_samplevnf/tasks/main.yml b/ansible/roles/install_samplevnf/tasks/main.yml index b0ea91961..55c4da5e1 100644 --- a/ansible/roles/install_samplevnf/tasks/main.yml +++ b/ansible/roles/install_samplevnf/tasks/main.yml @@ -36,16 +36,15 @@ when: vnf_name == "PROX" and image_type is defined and image_type == "vm" - name: "make {{ vnf_name }} clean" - my_make: + command: make -j {{ ansible_processor_vcpus }} clean + args: chdir: "{{ vnf_build_dir }}" - target: clean - extra_args: "-j {{ ansible_processor_vcpus }}" environment: "{{ build_env_vars }}" - name: "make {{ vnf_name }}" - my_make: + command: make -j {{ ansible_processor_vcpus }} + args: chdir: "{{ vnf_build_dir }}" - extra_args: "-j {{ ansible_processor_vcpus }}" environment: "{{ build_env_vars }}" #- command: cp "{{ vnf_build_dir }}/{{ vnf_name }}/build/ip_pipeline" "{{ INSTALL_BIN_PATH }}/vACL_vnf" |