ed7dc7b411
```bash Examining apache/uninstall.sls of type state [201] Trailing whitespace apache/uninstall.sls:2 ```
12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
{% 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
|