Saltstack Official Linux Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

20 líneas
429B

  1. {%- from "linux/map.jinja" import system with context %}
  2. include:
  3. - linux.system.iommu
  4. /etc/modprobe.d/sriov.conf:
  5. file.managed:
  6. - contents: |
  7. blacklist ixgbevf
  8. blacklist igbvf
  9. blacklist i40evf
  10. {%- if system.kernel.get('unsafe_interrupts', false) %}
  11. /etc/modprobe.d/iommu_unsafe_interrupts.conf:
  12. file.managed:
  13. - contents: options vfio_iommu_type1 allow_unsafe_interrupts=1
  14. {%- endif %}