12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #
- # /etc/network/interfaces
- #
- ifupdown2:
- pkg.installed
- # Require for some functions of ffho_net module, so make sure they are present.
- # Used by functions for bird and dhcp-server for example.
- python-ipcalc:
- pkg.installed
- # ifupdown2 configuration
- /etc/network/ifupdown2/ifupdown2.conf:
- file.managed:
- - source: salt://network/ifupdown2.conf
- - require:
- - pkg: ifupdown2
- - pkg: python-ipcalc
- # Write network configuration
- /etc/network/interfaces:
- file.managed:
- - template: jinja
- - source: salt://network/interfaces/interfaces.tmpl
- - require:
- - pkg: ifupdown2
- # Reload interface configuration if neccessary
- ifreload:
- cmd.wait:
- - name: /sbin/ifreload -a
- - watch:
- - file: /etc/network/interfaces
- - require:
- - file: /etc/network/ifupdown2/ifupdown2.conf
- # If there is an interface in vrf_external, install a workaround script
- # for a bug in ifupdown2 which will sometimes drop an IPv4 default route
- # present in the kernel and not reinstall it.
- #
- # The fix script will be called every minute by cron and after ifreload
- # was called to try to minimize any downtime.
- {% set vrf = [False] %}
- {% for iface, iface_config in salt['pillar.get']('nodes:' ~ grains['id'] ~ ':ifaces', {}).items() %}
- {% if iface_config.get ('vrf', '') == 'vrf_external' %}
- {% do vrf.append(True) %}
- {% break %}
- {% endif %}
- {% endfor %}
- /usr/local/sbin/ff_fix_default_route:
- {% if True in vrf %}
- file.managed:
- - source: salt://network/interfaces/ff_fix_default_route
- - mode: 755
- cmd.wait:
- - require:
- - cmd: ifreload
- - file: /usr/local/sbin/ff_fix_default_route
- - watch:
- - file: /etc/network/interfaces
- {% else %}
- file.absent
- {% endif %}
- /etc/cron.d/ff_fix_default_route:
- {% if True in vrf %}
- file.managed:
- - source: salt://network/interfaces/ff_fix_default_route.cron
- {% else %}
- file.absent
- {% endif %}
|