Saltstack Official Linux Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718
  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.selinux is defined %}
  3. include:
  4. - linux.system.repo
  5. {%- if grains.os_family == 'RedHat' %}
  6. {%- set mode = system.selinux %}
  7. {{ mode }}:
  8. selinux.mode:
  9. - require:
  10. - pkg: linux_repo_prereq_pkgs
  11. {%- endif %}
  12. {%- endif %}