2023-11-10 17:23:54 +00:00

16 lines
293 B
YAML

---
- name: "apache installation"
dnf:
name: "httpd"
state: "present"
- name: "apache service activation"
service:
name: "httpd"
state: "started"
enabled: yes
- name: "install php7 packages"
include_tasks: "php7-install.yml"
when: php_install|default(False)|bool