This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ExternalMirrors
/
apache-formula
mirror of
https://github.com/saltstack-formulas/apache-formula.git
Watch
1
Star
0
Fork
1
Code
Issues
0
Releases
31
Wiki
Activity
Browse Source
Add uninstall state
tags/v0.37.4
Oleksandr Porunov
7 years ago
parent
3f3e734cd7
commit
58e968916e
1 changed files
with
11 additions
and
0 deletions
Split View
Show Diff Stats
+11
-0
apache/uninstall.sls
+ 11
- 0
apache/uninstall.sls
View File
@@ -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
Write
Preview
Loading…
Cancel
Save