mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 21:57:00 +01:00
10 lines
284 B
Django/Jinja
10 lines
284 B
Django/Jinja
Name = {{ inventory_hostname }}
|
|
AddressFamily = ipv4
|
|
Interface = {{ vpn_interface }}
|
|
Mode = switch
|
|
{% for host in play_hosts | sort %}
|
|
{% if inventory_hostname != hostvars[host]['inventory_hostname'] %}
|
|
ConnectTo = {{ hostvars[host]['inventory_hostname'] }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|