2f32bd6c1e
- rewrite interface templates for batman, fastd, ffrl and meshbridge - add package ethtool to role server-basic - use more ipaddr filters and get rid of unneeded variables in dict ffrl_exit_server - change ffrl_public_ipv4_nat variable to ip/prefix format - update readme files
14 lines
354 B
YAML
14 lines
354 B
YAML
---
|
|
- name: create mesh bridges
|
|
template:
|
|
src: bridge.j2
|
|
dest: "/etc/network/interfaces.d/{{ item.key }}BR"
|
|
notify: reload network interfaces
|
|
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
|