blob: 61b052ae8b659aa476a0b381afc208d5a7dc0086 (
plain) (
tree)
|
|
# httpd ~~ roles/httpd_pre/main.yml
# prerequisites for `httpd` role
---
- name: ensure httpd.d directory exists
file:
path: /etc/httpd.d
state: directory
owner: "{{ user_root }}"
group: "{{ group_root }}"
mode: 0644
|