Skip to content

Instantly share code, notes, and snippets.

@DMeechan
Last active July 3, 2018 14:39
Show Gist options
  • Save DMeechan/fbdcb36b2acb6342ddfeae8998c7c576 to your computer and use it in GitHub Desktop.
Save DMeechan/fbdcb36b2acb6342ddfeae8998c7c576 to your computer and use it in GitHub Desktop.
DevOps Course Chapter 2 - Ansible
---
- 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