Add all files needed to bring up VM and run agaric.com locally
This commit is contained in:
parent
52c8b60bac
commit
4d2bc0ee24
742 changed files with 24037 additions and 0 deletions
106
box/provisioning/roles/arknoll.selenium/tasks/main.yml
Normal file
106
box/provisioning/roles/arknoll.selenium/tasks/main.yml
Normal file
|
@ -0,0 +1,106 @@
|
|||
---
|
||||
# Tasks file for selenium
|
||||
- name: Include OS-Specific variables
|
||||
include_vars: "{{ ansible_os_family }}.yml"
|
||||
tags: [configuration, selenium]
|
||||
|
||||
- name: Install dependencies
|
||||
package: name=unzip
|
||||
tags: [configuration, selenium]
|
||||
|
||||
- name: create directory
|
||||
file: "path={{ selenium_install_dir }}/selenium state=directory recurse=yes"
|
||||
tags: [configuration, selenium, selenium-create-directory]
|
||||
|
||||
- name: Download Selenium
|
||||
get_url:
|
||||
url: "http://selenium-release.storage.googleapis.com/{{ selenium_version | regex_replace('\\.[0-9]+$', '') }}/selenium-server-standalone-{{ selenium_version }}.jar"
|
||||
dest: "{{ selenium_install_dir }}/selenium/selenium-server-standalone-{{ selenium_version }}.jar"
|
||||
tags: [configuration, selenium, selenium-download]
|
||||
|
||||
- name: Install FireFox (if configured)
|
||||
package: name=firefox state=present
|
||||
when: selenium_install_firefox
|
||||
tags: [configuration, selenium, selenium-firefox]
|
||||
|
||||
- name: Add Chrome key (if configured, Debian)
|
||||
apt_key:
|
||||
url: "https://dl-ssl.google.com/linux/linux_signing_key.pub"
|
||||
state: present
|
||||
when: ansible_os_family == 'Debian' and selenium_install_chrome
|
||||
tags: [configuration, selenium, selenium-chrome]
|
||||
|
||||
- name: Add Chrome repo (if configured, Debian)
|
||||
apt_repository:
|
||||
repo: "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
|
||||
state: present
|
||||
update_cache: yes
|
||||
when: ansible_os_family == 'Debian' and selenium_install_chrome
|
||||
tags: [configuration, selenium, selenium-chrome]
|
||||
|
||||
- name: Install Chrome (if configured, Debian)
|
||||
apt:
|
||||
name: google-chrome-stable
|
||||
state: present
|
||||
when: ansible_os_family == 'Debian' and selenium_install_chrome
|
||||
tags: [configuration, selenium, selenium-chrome]
|
||||
|
||||
- name: Install Chrome (if configured, RedHat)
|
||||
yum:
|
||||
name: https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
|
||||
state: present
|
||||
when: ansible_os_family == 'RedHat' and selenium_install_chrome
|
||||
tags: [configuration, selenium, selenium-chrome]
|
||||
|
||||
- name: Get the latest release for chromedriver
|
||||
uri:
|
||||
url: http://chromedriver.storage.googleapis.com/LATEST_RELEASE
|
||||
return_content: yes
|
||||
register: chromedriver_latest
|
||||
when: selenium_install_chrome
|
||||
tags: [configuration, selenium, selenium-chrome]
|
||||
|
||||
- name: Install chromedriver
|
||||
unarchive:
|
||||
src: "http://chromedriver.storage.googleapis.com/{{ chromedriver_latest.content | trim }}/chromedriver_linux64.zip"
|
||||
dest: /usr/bin
|
||||
mode: 0755
|
||||
copy: no
|
||||
when: selenium_install_chrome
|
||||
tags: [configuration, selenium, selenium-chrome]
|
||||
|
||||
- name: Install xvfb
|
||||
package: name={{ selenium_xvfb_package }}
|
||||
tags: [configuration, selenium, selenium-xvfb]
|
||||
|
||||
- name: Install init script
|
||||
template:
|
||||
src: "selenium-init-{{ ansible_os_family }}.j2"
|
||||
dest: /etc/init.d/selenium
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0755
|
||||
when: "ansible_service_mgr != 'systemd'"
|
||||
tags: [configuration, selenium, selenium-install]
|
||||
|
||||
- name: Install systemd unit file (for systemd systems)
|
||||
template:
|
||||
src: "selenium-unit.j2"
|
||||
dest: /etc/systemd/system/selenium.service
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0755
|
||||
when: "ansible_service_mgr == 'systemd'"
|
||||
tags: [configuration, selenium, selenium-install]
|
||||
|
||||
- name: Register systemd service status (for systemd systems)
|
||||
shell: 'systemctl status selenium | grep "active (running)"'
|
||||
when: "ansible_service_mgr == 'systemd'"
|
||||
register: selenium_running
|
||||
ignore_errors: yes
|
||||
changed_when: false
|
||||
|
||||
- name: Ensure selenium is running
|
||||
service: name=selenium state=started enabled=yes
|
||||
tags: [configuration, selenium, selenium-run]
|
||||
when: selenium_running.failed is defined and selenium_running.failed == true
|
Loading…
Add table
Add a link
Reference in a new issue