2017-09-05 12:01:27 +02:00
|
|
|
---
|
|
|
|
- name: create fastd mesh interfaces
|
|
|
|
template:
|
|
|
|
src: fastd-mesh.j2
|
2017-10-07 00:57:35 +02:00
|
|
|
dest: "/etc/network/interfaces.d/{{ item.0.id }}VPN-{{ item.1.mtu }}"
|
2017-10-03 14:37:39 +02:00
|
|
|
notify: reload network interfaces
|
2017-10-07 00:57:35 +02:00
|
|
|
with_subelements:
|
|
|
|
- "{{ meshes }}"
|
|
|
|
- fastd.nodes.instances
|
2017-09-05 12:01:27 +02:00
|
|
|
|
|
|
|
- name: create fastd intragate interfaces
|
|
|
|
template:
|
|
|
|
src: fastd-intragate.j2
|
2017-10-07 00:57:35 +02:00
|
|
|
dest: "/etc/network/interfaces.d/{{ item.0.id }}igVPN-{{ item.1.mtu }}"
|
2017-10-03 14:37:39 +02:00
|
|
|
notify: reload network interfaces
|
2017-10-07 00:57:35 +02:00
|
|
|
with_subelements:
|
|
|
|
- "{{ meshes }}"
|
|
|
|
- fastd.intragate.instances
|