Saltstack Official Linux Formula
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

20 lines
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 %}