From 9dc7b5c31761a51460d385f0ff6a33eb793a730e Mon Sep 17 00:00:00 2001 From: MofassirArif Date: Mon, 1 Feb 2016 04:54:28 -0800 Subject: add sudo changes for joid Change-Id: Id31e687779be159cd3ad83cb3df2289054927074 Signed-off-by: MofassirArif (cherry picked from commit 062d12fc2f6a8de367da50445a8af49b983d0b81) --- benchmarks/playbooks/fio.yaml | 42 +++++++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 13 deletions(-) (limited to 'benchmarks/playbooks/fio.yaml') diff --git a/benchmarks/playbooks/fio.yaml b/benchmarks/playbooks/fio.yaml index 12359656..9532b166 100644 --- a/benchmarks/playbooks/fio.yaml +++ b/benchmarks/playbooks/fio.yaml @@ -14,52 +14,68 @@ - name: checking_home directory shell: echo $HOME register: home_dir + - name: cleaning - shell: rm -rf $HOME/fio + shell: sudo rm -rf $HOME/fio + - name: cleaning previous results - shell: rm -rf $HOME/qtip_result + shell: sudo rm -rf $HOME/qtip_result + - name: making fio temporary directory - shell: mkdir $HOME/fio + shell: sudo mkdir $HOME/fio + - name: making results temporary directory - shell: mkdir $HOME/qtip_result + shell: sudo mkdir $HOME/qtip_result + - include: ./sys_info_pbook.yaml vars: network: false + - name: Installing fio dependencies when CentOS - shell: yum install wget gcc libaio-devel -y + shell: sudo yum install wget gcc libaio-devel -y when: ansible_os_family == "RedHat" + - name: Installing fio dependencies when Ubuntu - shell: apt-get install wget gcc libaio-dev -y + shell: sudo apt-get install wget gcc libaio-dev -y when: ansible_os_family == "Debian" -# - name: make dummy file -# shell: touch $HOME/ramspeed/ramspeed.tar.gz + - name: Fetching fio shell: cd $HOME/fio/ && wget http://freecode.com/urls/3aa21b8c106cab742bf1f20d60629e3f -O fio.tar.gz - name: Untar fio - shell: cd $HOME/fio/ && tar -zxvf fio.tar.gz + shell: cd $HOME/fio/ && sudo tar -zxvf fio.tar.gz - name: configure - shell: cd $HOME/fio/fio-2.1.10 && ./configure && make + shell: cd $HOME/fio/fio-2.1.10 && sudo ./configure && sudo make + - name: Fetching fio job copy: src=./../fio_jobs/test_job dest={{home_dir.stdout}}/fio/fio-2.1.10/ + - name: Benchmarking block storage through fio - shell: cd $HOME/fio/fio-2.1.10 && ./fio --output-format=json --output=$HOME/qtip_result/fio_result.json test_job + shell: cd $HOME/fio/fio-2.1.10 && sudo ./fio --output-format=json --output=$HOME/qtip_result/fio_result.json test_job + - name: Fetching result transformation script copy: src=./result_transform/fio/fio_result_transform.py dest={{home_dir.stdout}}/qtip_result + - name: Transforming result - shell: cd $HOME/qtip_result && python fio_result_transform.py + shell: cd $HOME/qtip_result && sudo python fio_result_transform.py + - name: copy report formation script copy: src=./result_transform/final_report.py dest={{home_dir.stdout}}/qtip_result + - name: consolidating report - shell: cd $HOME/qtip_result && python final_report.py FIO {{fname}} + shell: cd $HOME/qtip_result && sudo python final_report.py FIO {{fname}} + - name: registering files 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={{workingdir}}/{{Dest_dir}}/fio/fio_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={{workingdir}}/{{Dest_dir}}/fio/fio_temp with_items: copy_log_results.stdout_lines -- cgit 1.2.3-korg