Saltstack Official Apache 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.

13 lines
328B

  1. {% set apache = salt['grains.filter_by']({
  2. 'Debian': {
  3. 'server': 'apache2',
  4. 'service': 'apache2',
  5. 'conf': '/etc/apache2/conf.d',
  6. },
  7. 'RedHat': {
  8. 'server': 'httpd',
  9. 'service': 'httpd',
  10. 'conf': '/etc/httpd/conf.d',
  11. },
  12. }, merge=salt['pillar.get']('apache:lookup')) %}