mirror of
https://github.com/jbowdre/vagrant-saltlab.git
synced 2024-11-16 19:32:17 +00:00
John Bowdre
a58f8fcc1f
- move content to be served via gitfs to salt_content/gitfs - create structure to hold local content at salt_content/local - configure Vagrant to rsync salt_content/local to /srv on Salt master
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
|
|
|