19 lines
509 B
YAML
Executable File
19 lines
509 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({})) }}'
|
|
mirror: '{{ glob_mirror | default({}) | combine(loc_mirror | default({})) }}'
|
|
roles:
|
|
# - certbot
|
|
- freeradius
|