Saltstack Official Linux Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
307B

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