From fe6dc78c6b7cef0d199839b4153c56fb8142b7d0 Mon Sep 17 00:00:00 2001 From: Nauman_Ahad Date: Mon, 1 Feb 2016 16:50:57 +0500 Subject: Corrected the openssl link SSL playbooks failed, as openssl link became obsolete. Updated the link in the ssl playbook Change-Id: I8be4d4fd34656a44df718854a6a219084c2231e7 Signed-off-by: Nauman_Ahad (cherry picked from commit 9c4e1e7f2021e9f05fa6e98cd212a6ddeb0fd2e5) --- benchmarks/playbooks/ssl.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/benchmarks/playbooks/ssl.yaml b/benchmarks/playbooks/ssl.yaml index fe8cbfeb..12b68de3 100644 --- a/benchmarks/playbooks/ssl.yaml +++ b/benchmarks/playbooks/ssl.yaml @@ -30,19 +30,19 @@ shell: apt-get install git gcc wget perl autoconf automake libpcap-dev libtool -y when: ansible_os_family == "Debian" - name: Fetching OpenSSL - shell: cd $HOME/Open_SSL/ && wget https://www.openssl.org/source/openssl-1.0.2e.tar.gz + shell: cd $HOME/Open_SSL/ && wget https://www.openssl.org/source/openssl-1.0.2f.tar.gz - name: Untar OpenSSL - shell: cd $HOME/Open_SSL/ && tar -zxvf openssl-1.0.2e.tar.gz + shell: cd $HOME/Open_SSL/ && tar -zxvf openssl-1.0.2f.tar.gz - name: configure - shell: cd $HOME/Open_SSL/openssl-1.0.2e && ./config + shell: cd $HOME/Open_SSL/openssl-1.0.2f && ./config - name: make - shell: cd $HOME/Open_SSL/openssl-1.0.2e && make + shell: cd $HOME/Open_SSL/openssl-1.0.2f && make - name: make install - shell: cd $HOME/Open_SSL/openssl-1.0.2e && make install + shell: cd $HOME/Open_SSL/openssl-1.0.2f && make install - name: Benchmarking RSA signatures - shell: cd $HOME/Open_SSL/openssl-1.0.2e/apps && ./openssl speed rsa >> $HOME/qtip_result/RSA_dump + shell: cd $HOME/Open_SSL/openssl-1.0.2f/apps && ./openssl speed rsa >> $HOME/qtip_result/RSA_dump - name: Benchmaring AES-128-cbc cipher encryption throughput - shell: cd $HOME/Open_SSL/openssl-1.0.2e/apps && ./openssl speed -evp aes-128-cbc >> $HOME/qtip_result/AES-128-CBC_dump + shell: cd $HOME/Open_SSL/openssl-1.0.2f/apps && ./openssl speed -evp aes-128-cbc >> $HOME/qtip_result/AES-128-CBC_dump - name: Fetching result transformation script copy: src=./result_transform/ssl/ssl_transform.py dest={{home_dir.stdout}}/qtip_result - name: Transforming result -- cgit 1.2.3-korg