Skip to content

Instantly share code, notes, and snippets.

@brokenthumbs
Last active February 10, 2016 22:44
Show Gist options
  • Save brokenthumbs/76aab61af0d723675099 to your computer and use it in GitHub Desktop.
Save brokenthumbs/76aab61af0d723675099 to your computer and use it in GitHub Desktop.
Ansible Parallel Plays Example
---
- include: playbook_1.yml
- include: playbook_2.yml
---
- hosts: 127.0.0.1
tasks:
- debug: msg="Task 1"
- debug: msg="Task 2"
---
- hosts: 127.0.0.1
tasks:
- debug: msg="Task 3"
- debug: msg="Task 4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment