blob: fd6eea2968f53b8b60eb4970e6641e8cfefdf9b9 (
plain) (
tree)
|
|
---
- 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: wiki
roles:
- wiki
- name: Set up the emacsconf-pad
hosts: emacsconf-pad
tags: pad
roles:
- pad
|