18 lines
421 B
YAML
Executable File
18 lines
421 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy re2o
|
|
- hosts: re2o
|
|
vars:
|
|
re2o: "{{ glob_re2o | default({}) | combine(loc_re2o | default({})) }}"
|
|
roles:
|
|
- re2o
|
|
|
|
# Deploy radius server
|
|
- hosts: radius
|
|
vars:
|
|
certbot: "{{ loc_certbot | default(glob_certbot | default([])) }}"
|
|
freeradius: "{{ glob_freeradius | default({}) | combine(loc_freeradius | default({})) }}"
|
|
roles:
|
|
- certbot
|
|
- freeradius
|