This commit is contained in:
2017-07-27 22:27:14 -04:00
2 changed files with 16 additions and 9 deletions

16
playbooks/site.yml Normal file
View File

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

View File

@@ -1,9 +0,0 @@
---
# This playbook deploys the whole application stack for my homelab
#
- name: Gather facts for all
hosts: all
remote_user: root
gather_facts: true
- include: playbooks/developer-machine.yml