Saltstack Official Linux Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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