Saltstack Official Linux Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

11 linhas
532B

  1. {%- from "linux/map.jinja" import system with context -%}
  2. ##
  3. ## This is cgrules configuration file is managed by Salt
  4. ##
  5. #<user/group> <controller(s)> <cgroup>
  6. {%- for cgroup_name, cg in system.cgroup.group.items() %}
  7. {%- for subject in cg.mapping.subjects %}
  8. {{ subject }}{% raw %} {% endraw %}{%- for controller_name, controller in cg.controller.items() -%}{{ controller_name }}{%- if not loop.last -%},{%- endif -%}{%- endfor -%}{% raw %} {% endraw %}{{ cgroup_name }}
  9. {%- endfor %}
  10. {%- endfor %}