role_podman_nextcloud/tasks/files.yml

22 lines
483 B
YAML

- name: Container Path data State directory
file:
path: "/home/{{ user.name }}/nextcloud/data"
state: directory
owner: "100999"
group: "100999"
- name: Container Path certs State directory
file:
path: "/home/{{ user.name }}/nginx/certs"
state: directory
owner: "100999"
group: "100999"
- name: Container Path html State directory
file:
path: "/home/{{ user.name }}/nginx/html"
state: directory
owner: "100999"
group: "100999"