Set up directory structure and a common role as well as a developer-machine role

This commit is contained in:
2017-05-09 20:25:07 -04:00
parent 309e1ce0c3
commit dcb40e00c5
6 changed files with 173 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
# This playbook deploys a development machine
- name: Apply common configuration to all nodes
hosts: developer-machines
user: root
tasks:
- include: ../roles/common/tasks/main.yml
- name: Apply common configuration to all nodes
hosts: developer-machines
user: root
tasks:
- include: ../roles/developer-machine/tasks/main.yml