2024-02-06 17:28:43 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
2023-03-25 04:11:25 +00:00
|
|
|
uninstall_apache:
|
|
|
|
pkg.removed:
|
|
|
|
- name: {{ pillar['pkgs']['apache'] }}
|
2023-03-27 15:38:35 +00:00
|
|
|
|
|
|
|
remove_html_file:
|
|
|
|
file.absent:
|
|
|
|
- name: /var/www/html/index.html
|
2023-03-28 14:56:37 +00:00
|
|
|
|
2023-03-28 15:03:39 +00:00
|
|
|
unconfigure_firewall_http:
|
2023-03-28 14:56:37 +00:00
|
|
|
module.run:
|
|
|
|
- firewalld.remove_service:
|
2023-03-28 15:03:39 +00:00
|
|
|
- service: http
|
|
|
|
- zone: public
|
|
|
|
|
|
|
|
unconfigure_firewall_https:
|
|
|
|
module.run:
|
|
|
|
- firewalld.remove_service:
|
|
|
|
- service: https
|
2023-03-28 14:56:37 +00:00
|
|
|
- zone: public
|
|
|
|
|