Saltstack Official Linux Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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