Saltstack Official Chrony Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
476B

  1. {%- set config = salt['pillar.get']('chrony:config', {}) -%}
  2. # This file is managed by salt
  3. {% for server in config.ntpservers -%}
  4. server {{ server }} {{ config.options }}
  5. {% endfor %}
  6. keyfile {{ config.keyfile }}
  7. driftfile {{ config.keyfile }}
  8. {% if config.allow is defined %}
  9. {% for allowed in config.get('allow', []) -%}
  10. allow {{ allowed }}
  11. {% endfor %}
  12. {% endif %}
  13. logdir {{ config.logdir }}
  14. {% for param in config.get('miscparams', []) -%}
  15. {{ param }}
  16. {% endfor %}