2017-09-05 12:01:27 +02:00
|
|
|
---
|
|
|
|
- name: create fastd mesh interfaces
|
|
|
|
template:
|
|
|
|
src: fastd-mesh.j2
|
|
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}VPN"
|
2017-10-03 14:37:39 +02:00
|
|
|
notify: reload network interfaces
|
2017-09-05 12:01:27 +02:00
|
|
|
with_dict: "{{ meshes }}"
|
|
|
|
|
|
|
|
- name: create fastd intragate interfaces
|
|
|
|
template:
|
|
|
|
src: fastd-intragate.j2
|
|
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}igVPN"
|
2017-10-03 14:37:39 +02:00
|
|
|
notify: reload network interfaces
|
2017-09-05 12:01:27 +02:00
|
|
|
with_dict: "{{ meshes }}"
|