Saltstack Official Chrony Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 9 años
hace 9 años
hace 9 años
hace 9 años
123456789101112131415161718192021
  1. {% from slspath+"/map.jinja" import chrony as config with context %}
  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.driftfile }}
  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('otherparams', []) -%}
  15. {{ param }}
  16. {% endfor %}