ansible/roles/interfaces/tasks/main.yml
Markus Hauschild 7034448b08
Some checks failed
continuous-integration/drone/push Build is failing
interfaces: use newer ifupdown2 version to fix gw mode
2021-07-23 13:11:07 +02:00

28 lines
887 B
YAML

---
- name: Install dependencies
apt:
name:
- bridge-utils
# work-around to get a version new enough not to screw up forwarding setting on all interfaces
- name: Install ifupdown2
apt: deb=http://moepman.eu/tmp/ifupdown2_3.1.0-1_all.deb
- name: Uninstall ifupdown
apt: name=ifupdown state=absent
# this is required for nginx, dhcpd and other to start correctly
# see https://github.com/CumulusNetworks/ifupdown2/issues/30#issuecomment-360589850
- name: Install fixed networking.service file
copy: src=networking.service dest=/lib/systemd/system/networking.service
notify: Reload systemd
- name: Configure mesh interfaces
template: src=mesh.conf.j2 dest=/etc/network/interfaces.d/mesh.conf
notify: Reload interfaces
- name: Configure backbone interfaces
template: src=backbone.conf.j2 dest=/etc/network/interfaces.d/backbone.conf
notify: Reload interfaces