summaryrefslogtreecommitdiffstats
path: root/docker-reuse-playbook.yml
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2022-10-12 20:28:41 -0400
committerSacha Chua <sacha@sachachua.com>2022-10-12 20:28:41 -0400
commit28d2d8a0da8b624d0a256ac492afe7605fa8d260 (patch)
tree13966a255ea5659c0d8749799007e4c6b0e0e52d /docker-reuse-playbook.yml
parentb0d8ea0d60bcf4626b84d20e99ea2fe93353b825 (diff)
downloademacsconf-ansible-28d2d8a0da8b624d0a256ac492afe7605fa8d260.tar.xz
emacsconf-ansible-28d2d8a0da8b624d0a256ac492afe7605fa8d260.zip
Be able to deploy pad to live0
Diffstat (limited to 'docker-reuse-playbook.yml')
-rw-r--r--docker-reuse-playbook.yml27
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
+