aboutsummaryrefslogtreecommitdiffstats
path: root/roles/httpd_pre/tasks/main.yml
blob: acc66730413a51794f42cf1596bfd3c647b5336d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---

- 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
remember that computers suck.