Sync up 'install.yaml' with 'nsb_setup.yml'
[yardstick.git] / ansible / roles / install_dependencies_jumphost / tasks / Debian.yml
index 6c3900d..a229cc1 100755 (executable)
     - ansible_distribution == 'Ubuntu'
     - ansible_distribution_major_version|int >= 17
 
+- name: Uninstall docker as it conflicts with docker-py
+  pip:
+    name:
+      - docker
+    state: absent
+
 - name: Install required docker-py module
   pip:
-    name: docker-py
+    name:
+      - docker-py
+      - shade
     state: latest
   environment: "{{ proxy_env }}"