From b0de7b654a6b9dde5110d0eb4cbf601b0e1bdde1 Mon Sep 17 00:00:00 2001 From: Konstantin Papkovskiy Date: Mon, 5 Dec 2016 17:47:52 +0300 Subject: [PATCH] Remove httplib2 The dependency on httplib2 was removed in Ansible 2.1 --- tasks/elasticsearch-Debian.yml | 4 ---- tasks/elasticsearch-RedHat.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/tasks/elasticsearch-Debian.yml b/tasks/elasticsearch-Debian.yml index dbf764a..2060c21 100644 --- a/tasks/elasticsearch-Debian.yml +++ b/tasks/elasticsearch-Debian.yml @@ -37,7 +37,3 @@ apt: deb=/tmp/elasticsearch-{{ es_version }}.deb when: not es_use_repository register: elasticsearch_install_from_package - -# ansible uri module requires httplib2 -- name: python-httplib2 - apt: name=python-httplib2 diff --git a/tasks/elasticsearch-RedHat.yml b/tasks/elasticsearch-RedHat.yml index 8a9be8b..94697b9 100644 --- a/tasks/elasticsearch-RedHat.yml +++ b/tasks/elasticsearch-RedHat.yml @@ -23,7 +23,3 @@ yum: name={% if es_custom_package_url is defined %}{{ es_custom_package_url }}{% else %}{{ es_package_url }}-{{ es_version }}.noarch.rpm{% endif %} state=present when: not es_use_repository register: elasticsearch_install_from_package - -# ansible uri module requires python-httplib2 -- name: python-httplib2 - pip: name=httplib2 \ No newline at end of file