vagrant-saltlab/salt_content/gitfs/salt/webserver/uninstall.sls

24 lines
427 B
Text
Raw Normal View History

# -*- coding: utf-8 -*-
# vim: ft=yaml
---
uninstall_apache:
pkg.removed:
- name: {{ pillar['pkgs']['apache'] }}
remove_html_file:
file.absent:
- name: /var/www/html/index.html
2023-03-28 14:56:37 +00:00
unconfigure_firewall_http:
2023-03-28 14:56:37 +00:00
module.run:
- firewalld.remove_service:
- service: http
- zone: public
unconfigure_firewall_https:
module.run:
- firewalld.remove_service:
- service: https
2023-03-28 14:56:37 +00:00
- zone: public