aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/dpi.yaml
diff options
context:
space:
mode:
authorMofassir Arif <Mofassir_arif@dellteam.com>2015-12-16 02:25:51 -0800
committerMofassir Arif <Mofassir_arif@dellteam.com>2015-12-16 02:46:30 -0800
commitd90f2b8fa54ca7b363eb75e321db768569a3ecd8 (patch)
treeadbc633af741af5e1588f3e09e10d22f1dc5a939 /benchmarks/playbooks/dpi.yaml
parentae3870b6863604d39bd15b0212bcf2694076a034 (diff)
Removed Root previlages
QTIP now uses a key of its own to ssh into VMs The ssh for the baremetal servers still needs work Change-Id: I1aa37e07c4f9b3f7f4902d16cdbf74f39eb6c698 Signed-off-by: Mofassir Arif <Mofassir_arif@dellteam.com> Conflicts: .gitignore
Diffstat (limited to 'benchmarks/playbooks/dpi.yaml')
-rw-r--r--benchmarks/playbooks/dpi.yaml20
1 files changed, 8 insertions, 12 deletions
diff --git a/benchmarks/playbooks/dpi.yaml b/benchmarks/playbooks/dpi.yaml
index b2c87d35..3bc6e017 100644
--- a/benchmarks/playbooks/dpi.yaml
+++ b/benchmarks/playbooks/dpi.yaml
@@ -2,9 +2,9 @@
connection: local
tasks:
- name: making dpi directory
- file: path={{Dest_dir}}/dpi state=directory
+ file: path=../../{{Dest_dir}}/dpi state=directory
- name: making temporary whetstone directory
- file: path={{Dest_dir}}/dpi/dpi_temp state=directory
+ file: path=../../{{Dest_dir}}/dpi/dpi_temp state=directory
- hosts: "{{role}}"
tasks:
@@ -19,11 +19,8 @@
- name: make qtip_result
shell: mkdir $HOME/qtip_result
- include: ./sys_info_pbook.yaml
-<<<<<<< HEAD
vars:
network: false
-=======
->>>>>>> 5a7dcc0... Networking testcases for QTIP Framework
- name: Installing nDPI dependencies if CentOS
shell: yum install git gcc patch perl-Time-HiRes autofconf automake libpcap-devel libtool -y
when: ansible_os_family == "RedHat"
@@ -61,13 +58,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}}/dpi/dpi_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{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={{Dest_dir}}/dpi/dpi_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{Dest_dir}}/dpi/dpi_temp
with_items: copy_log_results.stdout_lines
# - name: cleaning tempD
@@ -80,11 +77,10 @@
connection: local
tasks:
- name: extracting_json
- shell: ( find {{Dest_dir}}/dpi/dpi_temp/ -name "*.json" | xargs cp -t {{Dest_dir}}/dpi/)
+ shell: ( find ../../{{Dest_dir}}/dpi/dpi_temp/ -name "*.json" | xargs cp -t ../../{{Dest_dir}}/dpi/)
- name: making_logs_folder
- shell: mkdir -p {{Dest_dir}}/dpi/logs
+ shell: mkdir -p ../../{{Dest_dir}}/dpi/logs
- name: extracting_log
- shell: ( find {{Dest_dir}}/dpi/dpi_temp/ -name "*.log" | xargs cp -t {{Dest_dir}}/dpi/logs)
+ shell: ( find ../../{{Dest_dir}}/dpi/dpi_temp/ -name "*.log" | xargs cp -t ../../{{Dest_dir}}/dpi/logs)
- name: removing dpi_temp
- shell: rm -rf {{Dest_dir}}/dpi/dpi_temp
-
+ shell: rm -rf ../../{{Dest_dir}}/dpi/dpi_temp \ No newline at end of file