Skip to content

Commit 9e6fe53

Browse files
authored
Merge pull request #46 from ian-rose/fix-chromedriver-protocol
Change chromedriver URLs to use https
2 parents 4fda3ee + bf04e83 commit 9e6fe53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@
5454

5555
- name: Get the latest release for chromedriver
5656
uri:
57-
url: http://chromedriver.storage.googleapis.com/LATEST_RELEASE
57+
url: https://chromedriver.storage.googleapis.com/LATEST_RELEASE
5858
return_content: yes
5959
register: chromedriver_latest
6060
when: selenium_install_chrome
6161
tags: [configuration, selenium, selenium-chrome]
6262

6363
- name: Install chromedriver
6464
unarchive:
65-
src: "http://chromedriver.storage.googleapis.com/{{ chromedriver_latest.content | trim }}/chromedriver_linux64.zip"
65+
src: "https://chromedriver.storage.googleapis.com/{{ chromedriver_latest.content | trim }}/chromedriver_linux64.zip"
6666
dest: /usr/bin
6767
mode: 0755
6868
copy: no

0 commit comments

Comments
 (0)