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

16 行
292B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- if system.timezone is defined %}
  4. {{ system.timezone }}:
  5. timezone.system:
  6. {%- if grains.get('noservices') %}
  7. - onlyif: /bin/false
  8. {%- endif %}
  9. - utc: {{ system.utc }}
  10. {%- endif %}
  11. {%- endif %}