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.

map.jinja 462B

9 years ago
123456789101112131415
  1. {% set chrony = salt['grains.filter_by']({
  2. 'Debian': {
  3. 'package': 'chrony',
  4. 'service': 'chronyd',
  5. 'config': '/etc/chrony/chrony.conf',
  6. 'config_src': 'salt://chrony/files/chrony_config',
  7. },
  8. 'RedHat': {
  9. 'package': 'chrony',
  10. 'service': 'chronyd',
  11. 'config': '/etc/chrony.conf',
  12. 'config_src': 'salt://chrony/files/chrony_config',
  13. },
  14. },
  15. merge=salt['pillar.get']('chrony:config')) %}