diff --git a/apache/uninstall.sls b/apache/uninstall.sls new file mode 100644 index 0000000..cc24fbc --- /dev/null +++ b/apache/uninstall.sls @@ -0,0 +1,11 @@ +{% from "apache/map.jinja" import apache with context %} + +apache-uninstall: + service.dead: + - name: {{ apache.service }} + - enable: False + pkg.removed: + - pkgs: + - {{ apache.server }} + - require: + - service: apache-uninstall