mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-11-27 07:22:19 +00:00
20 lines
384 B
Text
20 lines
384 B
Text
uninstall_apache:
|
|
pkg.removed:
|
|
- name: {{ pillar['pkgs']['apache'] }}
|
|
|
|
remove_html_file:
|
|
file.absent:
|
|
- name: /var/www/html/index.html
|
|
|
|
unconfigure_firewall_http:
|
|
module.run:
|
|
- firewalld.remove_service:
|
|
- service: http
|
|
- zone: public
|
|
|
|
unconfigure_firewall_https:
|
|
module.run:
|
|
- firewalld.remove_service:
|
|
- service: https
|
|
- zone: public
|
|
|