aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/ramspeed.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/playbooks/ramspeed.yaml')
-rw-r--r--benchmarks/playbooks/ramspeed.yaml24
1 files changed, 12 insertions, 12 deletions
diff --git a/benchmarks/playbooks/ramspeed.yaml b/benchmarks/playbooks/ramspeed.yaml
index 365251b0..1d45f028 100644
--- a/benchmarks/playbooks/ramspeed.yaml
+++ b/benchmarks/playbooks/ramspeed.yaml
@@ -2,14 +2,14 @@
connection: local
tasks:
- name: making ramspeed directory
- file: path=../../{{Dest_dir}}/ramspeed state=directory
+ file: path={{workingdir}}/{{Dest_dir}}/ramspeed state=directory
- name: making temporary ramspeed directory
- file: path=../../{{Dest_dir}}/ramspeed/ramspeed_temp state=directory
-
+ file: path={{workingdir}}/{{Dest_dir}}/ramspeed/ramspeed_temp state=directory
+
- hosts: "{{role}}"
tasks:
-
+
- name: checking_home directory
shell: echo $HOME
register: home_dir
@@ -18,9 +18,9 @@
- name: cleaning previous results
shell: rm -rf $HOME/qtip_result
- name: making ramspeed temporary directory
- shell: mkdir $HOME/ramspeed
+ shell: mkdir $HOME/ramspeed
- name: making results temporary directory
- shell: mkdir $HOME/qtip_result
+ shell: mkdir $HOME/qtip_result
- include: ./sys_info_pbook.yaml
vars:
network: false
@@ -54,23 +54,23 @@
shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.json") | cut -d'/' -f2
register: files_to_copy
- name: copy results
- fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{Dest_dir}}/ramspeed/ramspeed_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest={{workingdir}}/{{Dest_dir}}/ramspeed/ramspeed_temp
with_items: files_to_copy.stdout_lines
- name: registering log files
shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.log") | cut -d'/' -f2
register: copy_log_results
- name: copying log results
- fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{Dest_dir}}/ramspeed/ramspeed_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest={{workingdir}}/{{Dest_dir}}/ramspeed/ramspeed_temp
with_items: copy_log_results.stdout_lines
- hosts: 127.0.0.1
connection: local
tasks:
- name: extracting_json
- shell: (find ../../{{Dest_dir}}/ramspeed/ramspeed_temp/ -name "*.json" | xargs cp -t ../../{{Dest_dir}}/ramspeed/)
+ shell: ( find {{workingdir}}/{{Dest_dir}}/ramspeed/ramspeed_temp/ -name "*.json" | xargs cp -t {{workingdir}}/{{Dest_dir}}/ramspeed/)
- name: making_logs_folder
- shell: mkdir -p ../../{{Dest_dir}}/ramspeed/logs
+ shell: mkdir -p {{workingdir}}/{{Dest_dir}}/ramspeed/logs
- name: extracting_log
- shell: (find ../../{{Dest_dir}}/ramspeed/ramspeed_temp/ -name "*.log" | xargs cp -t ../../{{Dest_dir}}/ramspeed/logs)
+ shell: ( find {{workingdir}}/{{Dest_dir}}/ramspeed/ramspeed_temp/ -name "*.log" | xargs cp -t {{workingdir}}/{{Dest_dir}}/ramspeed/logs)
- name: removing ramspeed_log
- shell: rm -rf ../../{{Dest_dir}}/ramspeed/ramspeed_temp
+ shell: rm -rf {{workingdir}}/{{Dest_dir}}/ramspeed/ramspeed_temp