Last active
July 27, 2018 12:55
-
-
Save DMeechan/2792ae01f8ff766eaca659b8f3e707c7 to your computer and use it in GitHub Desktop.
DevOps Course Chapter 2: Ansible - Use Ansible's pre-tasks to install Java before our role installs Selenium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pre_tasks: | |
- name: Install Java | |
apt: | |
name: default-jre | |
state: present | |
update_cache: yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment