12 lines
339 B
YAML
Executable File
12 lines
339 B
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
---
|
|
# Deploy radius server
|
|
- hosts: radius
|
|
vars:
|
|
certbot: '{{ glob_certbot | default({}) | combine(loc_certbot | default({})) }}'
|
|
freeradius: '{{ glob_freeradius | default({}) | combine(loc_freeradius | default({})) }}'
|
|
mirror: '{{ glob_mirror.name }}'
|
|
roles:
|
|
- certbot
|
|
- freeradius
|