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

11 lines
272B

  1. {% set nginx = salt['grains.filter_by']({
  2. 'Debian': {
  3. 'package': 'nginx',
  4. 'apache_utils': 'apache2-utils',
  5. },
  6. 'RedHat': {
  7. 'package': 'nginx',
  8. 'apache_utils': 'httpd-tools',
  9. },
  10. }, merge=salt['pillar.get']('nginx:lookup')) %}