Merge branch 'bugfix/remove-httplib2' of https://github.com/soylent/ansible-elasticsearch into soylent-bugfix/remove-httplib2

This commit is contained in:
Dale McDiarmid 2017-01-02 19:48:56 +00:00
commit 9026b2a0fd
2 changed files with 0 additions and 8 deletions

View file

@ -37,7 +37,3 @@
apt: deb=/tmp/elasticsearch-{{ es_version }}.deb apt: deb=/tmp/elasticsearch-{{ es_version }}.deb
when: not es_use_repository when: not es_use_repository
register: elasticsearch_install_from_package register: elasticsearch_install_from_package
# ansible uri module requires httplib2
- name: python-httplib2
apt: name=python-httplib2

View file

@ -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 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 when: not es_use_repository
register: elasticsearch_install_from_package register: elasticsearch_install_from_package
# ansible uri module requires python-httplib2
- name: python-httplib2
pip: name=httplib2