Commit 57d1d748 by Feanil Patel Committed by GitHub

Merge pull request #3176 from edx/feanil/httplib2

This needs to be installed on the servers not locally.
parents 62f6f866 8831e4f3
......@@ -35,3 +35,6 @@ user_rbash_links:
# will take precedence over the paramter
user_info: []
user_debian_pkgs:
# This is needed for the uri module to work correctly.
- python-httplib2
......@@ -70,6 +70,14 @@
# want to provide more binaries add them to user_rbash_links
# which can be passed in as a parameter to the role.
#
- name: Install debian packages user role needs
apt:
name: "{{ item }}"
install_recommends: yes
state: present
update_cache: yes
with_items: "{{ user_debian_pkgs }}"
when: ansible_distribution in common_debian_variants
- debug:
var: user_info
......
......@@ -14,9 +14,6 @@ awscli==1.10.28
requests==2.9.1
datadog==0.8.0
# Needed to fetch github keys when deploying instances
httplib2==0.9.2
# Needed for the mongo_* modules (playbooks/library/mongo_*)
pymongo==3.1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment