Commit d69a1cd0 by David Baumgold

More certs to not validate

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