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.

12 lines
255B

  1. {% from "apache/map.jinja" import apache with context %}
  2. apache-uninstall:
  3. service.dead:
  4. - name: {{ apache.service }}
  5. - enable: False
  6. pkg.removed:
  7. - pkgs:
  8. - {{ apache.server }}
  9. - require:
  10. - service: apache-uninstall