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

23 行
484B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- for locale_name, locale in system.locale.items() %}
  4. {%- if locale.get('enabled', True) %}
  5. linux_locale_{{ locale_name }}:
  6. locale.present:
  7. - name: {{ locale_name }}
  8. {%- if locale.get('default', False) %}
  9. linux_locale_default:
  10. locale.system:
  11. - name: {{ locale_name }}
  12. - require:
  13. - locale: linux_locale_{{ locale_name }}
  14. {%- endif %}
  15. {%- endif %}
  16. {%- endfor %}
  17. {%- endif %}