Created
November 7, 2016 18:30
-
-
Save whelmed/a866e5e2e8086a760d5fa5eaf3aeba58 to your computer and use it in GitHub Desktop.
Our first playbook
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: 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