diff --git a/playbooks/site.yml b/playbooks/site.yml new file mode 100644 index 0000000..fee0ec5 --- /dev/null +++ b/playbooks/site.yml @@ -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 diff --git a/site.yml b/site.yml deleted file mode 100644 index 93f9528..0000000 --- a/site.yml +++ /dev/null @@ -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