diff options
Diffstat (limited to 'benchmarks/playbooks/cachebench.yaml')
-rw-r--r-- | benchmarks/playbooks/cachebench.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/playbooks/cachebench.yaml b/benchmarks/playbooks/cachebench.yaml index d0e04140..ebd0e172 100644 --- a/benchmarks/playbooks/cachebench.yaml +++ b/benchmarks/playbooks/cachebench.yaml @@ -1,5 +1,5 @@ - - hosts: demo1 + - hosts: "{{ roles }}" tasks: - name: clean @@ -33,6 +33,6 @@ shell: (cd /root/results/; find . -maxdepth 1 -type f) | cut -d'/' -f2 register: files_to_copy - name: copy results - fetch: src=/root/results/{{item}} dest={{Dest_dir}}/cachebench + fetch: src=/root/results/{{item}} dest={{workingdir}}/{{Dest_dir}}/cachebench with_items: files_to_copy.stdout_lines |