ansible/plays/irc.yml

12 lines
349 B
YAML
Executable File

#!/usr/bin/env ansible-playbook
---
- hosts: irc
vars:
certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}'
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
thelounge: '{{ glob_thelounge | default({}) | combine(loc_thelounge | default({})) }}'
roles:
- certbot
- nginx
- thelounge