blob: 46475d266f10102390187fc4b669dbdbbf345d98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
- name: create httpd directory
ansible.builtin.file:
path: /etc/httpd.d
state: directory
owner: 0
group: 0
mode: 0644
- name: create htpasswd directory
ansible.builtin.file:
path: /var/www/htpasswd
state: directory
owner: "www"
group: "www"
mode: 0700
- name: mount nfs in chroot
ansible.builtin.include_role:
name: nfsclient
vars:
nfsclient_dir: "{{ httpd_chroot }}/data"
when: httpd_use_nfs
|