Saltstack Official Chrony Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 satır
612B

  1. ########################################################################
  2. # File managed by Salt at <{{ source }}>.
  3. # Your changes will be overwritten.
  4. ########################################################################
  5. {% for server in chrony.ntpservers -%}
  6. server {{ server }} {{ chrony.options }}
  7. {% endfor %}
  8. keyfile {{ chrony.keyfile }}
  9. driftfile {{ chrony.driftfile }}
  10. {% if chrony.allow is defined %}
  11. {% for allowed in chrony.get('allow', []) -%}
  12. allow {{ allowed }}
  13. {% endfor %}
  14. {%- endif %}
  15. logdir {{ chrony.logdir }}
  16. {% for param in chrony.get('otherparams', []) -%}
  17. {{ param }}
  18. {% endfor %}