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

11 行
207B

  1. {%- from "linux/map.jinja" import system with context -%}
  2. #!/bin/sh
  3. while true; do
  4. case $1 in
  5. {%- for policy in system.policyrcd %}
  6. {{ policy.package }}) {{ policy.action }};;
  7. {%- endfor %}
  8. esac
  9. done