Compare commits

..

2 Commits

Author SHA1 Message Date
d91a92fe9a
feat(element): add ansible role 2024-09-19 18:29:07 +02:00
af1e7271d7
feat(cinny): add ansible role 2024-09-19 18:28:39 +02:00
2 changed files with 12 additions and 0 deletions

6
playbooks/cinny.yml Normal file
View File

@ -0,0 +1,6 @@
---
- name: Deploy and configure cinny
hosts: "{{ cinny_hosts | default('cinny') }}"
become: "{{ cinny_become | default(true) }}"
roles:
- role: finallycoffee.matrix.cinny

6
playbooks/element.yml Normal file
View File

@ -0,0 +1,6 @@
---
- name: Deploy and configure element
hosts: "{{ element_hosts | default('element') }}"
become: "{{ element_become | default(true) }}"
roles:
- role: finallycoffee.matrix.element