Skip to content

Instantly share code, notes, and snippets.

@whelmed
Created November 7, 2016 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whelmed/a866e5e2e8086a760d5fa5eaf3aeba58 to your computer and use it in GitHub Desktop.
Save whelmed/a866e5e2e8086a760d5fa5eaf3aeba58 to your computer and use it in GitHub Desktop.
Our first playbook
---
- hosts: all
gather_facts: false
connection: local
become: yes
tasks:
- name: Install our packages
apt:
name: "{{ item }}"
state: present
with_items:
- apache2
- mysql-server
- mysql-common
- mysql-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment