qtip: compass dependencies 73/8973/1
authorMofassirArif <mofassir.arif@xflowresearch.com>
Fri, 29 Jan 2016 12:28:05 +0000 (04:28 -0800)
committerNauman Ahad <nauman.ahad@xflowresearch.com>
Mon, 1 Feb 2016 22:37:30 +0000 (22:37 +0000)
Change-Id: Id4be468c5a1cef6d9b887f1114eab5af808455af
Signed-off-by: MofassirArif <mofassir.arif@xflowresearch.com>
(cherry picked from commit 96da743d9d8fbf2245a27fbbce703bc3c55dbdda)

benchmarks/playbooks/iperf.yaml
benchmarks/playbooks/sys_info_pbook.yaml

index f139ff6..ce2ffb6 100644 (file)
@@ -55,7 +55,7 @@
       when: iptable_entry != '' and installertype == 'fuel'
     - name: Installing IPERF when Ubuntu
       shell: apt-get install iperf3 -y
-      when: ansible_os_family == "Debian" and rolename == '1-server'
+      when: ansible_os_family == "Debian"
     - name: Installing Iperf3
       shell: yum install iperf3 -y
       when: ansible_os_family == "RedHat"
index b5415aa..bc47423 100644 (file)
@@ -1,25 +1,44 @@
    - name: Epel Release  install when CentOS
-     shell: yum install epel-release -y
+     shell: sudo yum install epel-release -y
      when: ansible_os_family == "RedHat"
+
    - name: Inxi  install when CentOS
-     shell: yum install inxi -y
+     shell: sudo yum install inxi -y
      when: ansible_os_family == "RedHat"
+
+   - name: Software Properties Common
+     shell: sudo apt-get install software-properties-common -y
+     when: ansible_os_family  == "Debian"
+
+   - name: adding trusty-backport main repo
+     shell: sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-backports  main restricted universe multiverse"
+     when: ansible_os_family  == "Debian"
+
+   - name: adding trusty main repo
+     shell: sudo apt-add-repository "deb http://archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse"
+     when: ansible_os_family  == "Debian"
+
    - name: system info collection tool install when Ubuntu
-     shell: apt-get update && apt-get install inxi -y
+     shell: sudo apt-get update && apt-get install inxi -y
      when: ansible_os_family  == "Debian"
+
    - name: Install ansible copy dependencies if remote host has selinux enabled
-     shell: yum  install libselinux-python -y
+     shell: sudo yum  install libselinux-python -y
      when: ansible_os_family == "RedHat"
+
    - name: Install ansiblle copy dependencies if remote host has selinux enaled
-     shell: apt-get install python-selinux -y
+     shell: sudo apt-get install python-selinux -y
      when: ansible_os_family == "Debian"
+
    - name: system_info script copy
      copy: src=./info_script/info_collect.py dest={{home_dir.stdout}}/qtip_result/
+
    - name: collecting system informaton for non-network test cases
-     shell: cd $HOME/qtip_result &&  python info_collect.py c
+     shell: cd $HOME/qtip_result &&  sudo python info_collect.py c
      when: not network
+
    - name: collecting system information for network test  cases
-     shell: cd $HOME/qtip_result && python info_collect.py n
+     shell: cd $HOME/qtip_result && sudo python info_collect.py n
      when: network