12 lines
363 B
YAML
Executable File
12 lines
363 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
- hosts: irc
|
|
vars:
|
|
certbot: '{{ glob_certbot | default({}) | combine(loc_certbot | default({})) }}'
|
|
nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}'
|
|
thelounge: '{{ glob_thelounge | default({}) | combine(loc_thelounge | default({})) }}'
|
|
roles:
|
|
- certbot
|
|
- nginx
|
|
- thelounge
|