aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/ssl.yaml
diff options
context:
space:
mode:
authorMofassir Arif <Mofassir_arif@dellteam.com>2015-12-17 03:48:42 -0800
committerMofassir Arif <Mofassir_arif@dellteam.com>2015-12-17 03:48:42 -0800
commit390c1e3ca7f751fdfe6c7e9634d0d95ae6ba114f (patch)
treee441b0e2e83ac7da9830d23ce32756501232fbd1 /benchmarks/playbooks/ssl.yaml
parent6737007d817e62567cbcdaca598f4b1ffa915463 (diff)
Script to modify key file permissions
I have added a script to change the file permissions of the key files to 600 so that they can be used by the ssh agent The duration of the sshtest has also been reduced to allow the Jenkins Job to run/fail in a reasonable amount of time Change-Id: I5446896619dfba3f3efb600b64628343d6378164 Signed-off-by: Mofassir Arif <Mofassir_arif@dellteam.com>
Diffstat (limited to 'benchmarks/playbooks/ssl.yaml')
-rw-r--r--benchmarks/playbooks/ssl.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/playbooks/ssl.yaml b/benchmarks/playbooks/ssl.yaml
index d27a967d..21c20243 100644
--- a/benchmarks/playbooks/ssl.yaml
+++ b/benchmarks/playbooks/ssl.yaml
@@ -54,13 +54,13 @@
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}}/ssl/ssl_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{Dest_dir}}/ssl/ssl_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}}/ssl/ssl_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{Dest_dir}}/ssl/ssl_temp
with_items: copy_log_results.stdout_lines