Commit 41b58ec8 by Ben Patterson

Workaround for debian squeeze deprecation and Chrome.

The older chrome repositories have been taken down; however, we
use a saved copy of the debian package. After installing that package,
ensure it is not referenced by the target machine after Chrome
is installed.
parent a671590e
......@@ -15,6 +15,12 @@
when: download_deb.changed
with_items: browser_s3_deb_pkgs
# Because the source location has been deprecated, we need to
# ensure it does not interfere with subsequent apt commands
# TODO: use the file module when using ansible 2.x
- name: archive google chrome debian source list
command: "mv /etc/apt/sources.list.d/google-chrome.list /etc/apt/sources.list.d/google-chrome.old"
- name: download ChromeDriver
get_url:
url={{ chromedriver_url }}
......
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