2017-09-05 12:01:27 +02:00
|
|
|
---
|
|
|
|
- name: create mesh bridges
|
|
|
|
template:
|
|
|
|
src: bridge.j2
|
|
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}BR"
|
2017-10-03 14:37:39 +02:00
|
|
|
notify: reload network interfaces
|
2017-09-05 12:01:27 +02:00
|
|
|
with_dict: "{{ meshes }}"
|
|
|
|
|
|
|
|
- name: set sysfs variables
|
|
|
|
template:
|
|
|
|
src: sysfs.j2
|
|
|
|
dest: "/etc/sysfs.d/99-{{ item.key }}BR.conf"
|
|
|
|
with_dict: "{{ meshes }}"
|
|
|
|
notify: activate sysfs variables
|