diff options
Diffstat (limited to 'docker-reuse-playbook.yml')
-rw-r--r-- | docker-reuse-playbook.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docker-reuse-playbook.yml b/docker-reuse-playbook.yml new file mode 100644 index 0000000..10df7d6 --- /dev/null +++ b/docker-reuse-playbook.yml @@ -0,0 +1,27 @@ +--- +- name: Load vars + hosts: all + tags: always + tasks: + - include_vars: + file: docker-vars.yml +- name: Load talks + hosts: localhost + tags: create-pads + tasks: + - include_vars: + file: talks.json + name: talks + +- name: Set up the emacsconf-front wiki + hosts: emacsconf-front + tags: front + roles: + - wiki + +- name: Set up the emacsconf-pad + hosts: emacsconf-pad + tags: pad + roles: + - pad + |