Commit d69a1cd0 by David Baumgold

More certs to not validate

parent 042651b4
......@@ -46,6 +46,7 @@
get_url: >
url={{ aws_s3cmd_url }}
dest={{ aws_dirs.data.path }}/
validate_certs=no
- name: untar s3cmd
shell: >
......
......@@ -4,6 +4,7 @@
get_url: >
url={{ browsermob_proxy_url }}
dest=/var/tmp/browsermob-proxy-{{ browsermob_proxy_version }}.zip
validate_certs=no
register: download_browsermob_proxy
- name: unzip into /var/tmp/
......@@ -13,7 +14,7 @@
when: download_browsermob_proxy.changed
- name: move to /etc/browsermob-proxy/
shell: >
shell: >
mv /var/tmp/browsermob-proxy-{{ browsermob_proxy_version }} /etc/browsermob-proxy
when: download_browsermob_proxy.changed
......
---
# elasticsearch
#
#
# Dependencies:
#
# * common
# * oraclejdk
#
#
# Example play:
#
#
# This role can be used to do a single-server or clustered
# installation of the elasticsearch service. When a cluster
# is being installed, there are two important things that
......@@ -34,6 +34,7 @@
url={{ elasticsearch_url }}
dest=/var/tmp/{{ elasticsearch_file }}
force=no
validate_certs=no
register: elasticsearch_reinstall
- name: install elasticsearch from local package
......@@ -57,7 +58,7 @@
template: >
src=etc/default/elasticsearch.j2 dest=/etc/default/elasticsearch
when: ELASTICSEARCH_CLUSTERED
- name: drop the elasticsearch config
template: >
src=edx/etc/elasticsearch/elasticsearch.yml.j2 dest={{ elasticsearch_cfg_dir }}/elasticsearch.yml
......@@ -68,8 +69,8 @@
template: >
src=edx/etc/elasticsearch/logging.yml.j2 dest={{ elasticsearch_cfg_dir }}/logging.yml
mode=0744
when: ELASTICSEARCH_CLUSTERED
when: ELASTICSEARCH_CLUSTERED
- name: Ensure elasticsearch is enabled and started
service: name=elasticsearch state=started enabled=yes
......
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