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