24 lines
385 B
Text
24 lines
385 B
Text
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
proxy server {
|
||
|
default_fallback = no
|
||
|
dynamic = no
|
||
|
}
|
||
|
|
||
|
{% for name, hs in radiusd__home_servers.items %}
|
||
|
home_server {{ name }} {
|
||
|
type = auth
|
||
|
ipaddr = {{ hs.addr }}
|
||
|
port = {{ hs.port | int }}
|
||
|
}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% for name, realm in radiusd__realms.items() %}
|
||
|
realm {{ name }} {
|
||
|
auth_pool = auth_pool
|
||
|
}
|
||
|
{% endfor %}
|
||
|
|
||
|
realm LOCAL {
|
||
|
}
|