Saltstack Official Linux Formula
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 lines
515B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- for name, limit in system.limit.items() %}
  4. linux_limit_{{ name }}:
  5. {%- if limit.get('enabled', True) %}
  6. file.managed:
  7. - name: /etc/security/limits.d/90-salt-{{ name }}.conf
  8. - source: salt://linux/files/limits.conf
  9. - template: jinja
  10. - defaults:
  11. limit_name: {{ name }}
  12. {%- else %}
  13. file.absent:
  14. - name: /etc/security/limits.d/90-salt-{{ name }}.conf
  15. {%- endif %}
  16. {%- endfor %}
  17. {%- endif %}