Merge "Remove tool provisioning in Standalone contexts"
[yardstick.git] / ansible / roles / download_pmu_tools / tasks / main.yml
index e78cc72..37375b6 100644 (file)
     pmu_tools_path: "{{ pmu_tools_dest }}"
 
 - name: Create perfmon local mirror
-  command: "wget -mkEpnp {{ perfmon_url }} -P {{ pmu_tools_dest }}"
+  command: "wget -mkEpnp {{ perfmon_url }} -P {{ INSTALL_BIN_PATH }}/pmu_local_mirror"
   ignore_errors: yes
+  failed_when: false #some of the links while creating mirror are not found, results in failure
+  no_log: True
 
-- name: Copy local event download file
-  copy:
-    src: event_download_local.py
-    dest: "{{ pmu_tools_dest }}"
-    owner: root
-    group: root
-    mode: 0755