+# Dependencies are "expressed" by the hosts file, e.g.
+# ```
+# [email:children]
+# journalwatch
+# [letsencrypt:children]
+# prosody
+# ```
+# I tried using role dependencies but that doesn't interact well with tags:
+# When restricting to a tag, its dependencies still get played.
+
- hosts: all
gather_facts: no
pre_tasks:
- base
tags: base
+- hosts: unbound
+ gather_facts: no
+ roles:
+ - unbound
+ tags: unbound
+
- hosts: letsencrypt
gather_facts: no
roles:
- letsencrypt
tags: letsencrypt
-# FIXME make this a role, or several
-- import_playbook: email.yml
+- hosts: email
+ gather_facts: no
+ roles:
+ - email
+ tags: email
+
+- hosts: journalwatch
+ # depends: email
+ gather_facts: no
+ roles:
+ - journalwatch
+ tags: journalwatch
- hosts: bind
gather_facts: no
- bind
tags: bind
+- hosts: etherpad
+ gather_facts: no
+ roles:
+ - etherpad
+ tags: etherpad
+
- hosts: prosody
+ # depends: letsencrypt
gather_facts: no
+ pre_tasks:
+ - setup:
roles:
- prosody
tags: prosody