Last active
July 3, 2018 14:39
-
-
Save DMeechan/fbdcb36b2acb6342ddfeae8998c7c576 to your computer and use it in GitHub Desktop.
DevOps Course Chapter 2 - Ansible
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
--- | |
- hosts: mygroup | |
tasks: | |
- name: Installs Git version control | |
apt: | |
name: git | |
state: present | |
update-cache: true | |
- name: Installs GoAccess | |
apt: | |
name: goaccess | |
state: present | |
- hosts: anothergroup | |
tasks: | |
- name: Install Nodejs | |
apt: | |
name: nodejs | |
state: present |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment