Commit c8f98625 by Feanil Patel

Don't validate certs from S3.

Ansible 1.5.5 doesn't support validating certs if SSL v3 is not supported.
parent 0fc2a354
......@@ -6,7 +6,7 @@
state=present update_cache=yes
- name: download browser debian packages from S3
get_url: dest="/tmp/{{ item.name }}" url="{{ item.url }}"
get_url: dest="/tmp/{{ item.name }}" url="{{ item.url }}" validate_certs=no
register: download_deb
with_items: browser_s3_deb_pkgs
......@@ -19,6 +19,7 @@
get_url:
url={{ chromedriver_url }}
dest=/var/tmp/chromedriver_{{ chromedriver_version }}.zip
validate_certs=no
- name: Install ChromeDriver 2
shell: unzip /var/tmp/chromedriver_{{ chromedriver_version }}.zip
......
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