From bd9fa7e7176d834dd97da2f0521b5228b5f684cf Mon Sep 17 00:00:00 2001 From: Jacob Cody Wimer Date: Thu, 27 Jul 2017 00:17:04 -0400 Subject: [PATCH] Changed name of playbook to site --- playbooks/site.yml | 16 ++++++++++++++++ site.yml | 9 --------- 2 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 playbooks/site.yml delete mode 100644 site.yml 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