Saltstack Official Linux Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
262B

  1. {%- from "linux/map.jinja" import network with context %}
  2. {%- for interface_name, interface in network.interface.items() %}
  3. {%- if 'dpdk' in interface.type and interface.pci is defined %}
  4. pci {{ interface.pci }} {{ interface.driver }}
  5. {%- endif %}
  6. {%- endfor %}