From 062d12fc2f6a8de367da50445a8af49b983d0b81 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 --- benchmarks/playbooks/dpi.yaml | 54 ++++++++++++++++++++++++++++--------------- 1 file changed, 35 insertions(+), 19 deletions(-) (limited to 'benchmarks/playbooks/dpi.yaml') diff --git a/benchmarks/playbooks/dpi.yaml b/benchmarks/playbooks/dpi.yaml index 6b24fae6..1f7fee54 100644 --- a/benchmarks/playbooks/dpi.yaml +++ b/benchmarks/playbooks/dpi.yaml @@ -12,70 +12,86 @@ tasks: - name: echo shell: echo $USER + - name: checking_home directory shell: echo $HOME register: home_dir + - name: cleaning - shell: rm -rf $HOME/tempD + shell: sudo rm -rf $HOME/tempD + - name: cleaning previous results - shell: rm -rf $HOME/qtip_result + shell: sudo rm -rf $HOME/qtip_result + - name: make qtip_result - shell: mkdir $HOME/qtip_result + shell: sudo mkdir $HOME/qtip_result - include: ./sys_info_pbook.yaml vars: network: false + - name: Installing nDPI dependencies if CentOS - shell: yum install git gcc patch perl-Time-HiRes autofconf automake libpcap-devel libtool -y + shell: sudo yum install git gcc patch perl-Time-HiRes autofconf automake libpcap-devel libtool -y when: ansible_os_family == "RedHat" + - name: Installing nDPI dependcies if Ubuntu - shell: apt-get install git gcc patch autoconf automake libpcap-dev libtool -y + shell: sudo apt-get install git gcc patch autoconf automake libpcap-dev libtool -y when: ansible_os_family == "Debian" + - name: making nDPI temporary directory - shell: mkdir $HOME/tempD + shell: sudo mkdir $HOME/tempD + - name: Clone nDPI shell: cd $HOME/tempD && git clone https://github.com/ntop/nDPI.git + - name: autogen - shell: cd $HOME/tempD/nDPI && ./autogen.sh + shell: cd $HOME/tempD/nDPI && sudo ./autogen.sh + - name: configure - shell: cd $HOME/tempD/nDPI && ./configure + shell: cd $HOME/tempD/nDPI && sudo ./configure + - name: make - shell: cd $HOME/tempD/nDPI && make + shell: cd $HOME/tempD/nDPI && sudo make + - name: Fetching Test_pcap file shell: cd $HOME/tempD/nDPI/example && wget https://www.dropbox.com/s/ne64u7jykuw2uu5/test.pcap + - name: fetch Averaging script copy: src=./result_transform/dpi/dpi_average.sh dest={{home_dir.stdout}}/tempD/nDPI/example mode=777 + - name: Run nDPI benchmark - shell: cd $HOME/tempD/nDPI/example && ./dpi_average.sh + shell: cd $HOME/tempD/nDPI/example && sudo ./dpi_average.sh + - name: copy result to temp_direc - shell: cp $HOME/tempD/nDPI/example/dpi_dump.txt $HOME/qtip_result + shell: sudo cp $HOME/tempD/nDPI/example/dpi_dump.txt $HOME/qtip_result + - name: fetch dpi result transform script copy: src=./result_transform/dpi/dpi_transform.py dest={{home_dir.stdout}}/qtip_result - name: Transforming results - shell: cd $HOME/qtip_result && python dpi_transform.py + shell: cd $HOME/qtip_result && sudo python dpi_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 DPI {{fname}} + shell: cd $HOME/qtip_result && sudo python final_report.py DPI {{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}}/dpi/dpi_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}}/dpi/dpi_temp with_items: copy_log_results.stdout_lines - # - name: cleaning tempD - # shell: rm -rf $HOME/tempD - # - name: cleaning_qtip_result - # shell: rm -rf $HOME/qtip_result - - - hosts: 127.0.0.1 connection: local tasks: -- cgit 1.2.3-korg