Saltstack Official Linux Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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