feat(send): add role for self-hosted Send file-share service #7

Merged
Simon merged 5 commits from feature/send into main 2026-05-26 13:42:27 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit e1d604effc - Show all commits

View file

@ -4,7 +4,7 @@ galaxy_info:
description: Deploy a self-hosted Send (timvisee fork) instance with Redis via Docker Compose
license: MIT
min_ansible_version: 2.14
min_ansible_version: "2.14"
galaxy_tags:
- send

View file

@ -3,20 +3,20 @@
# tasks file for send
- name: Create docker compose directory
file:
ansible.builtin.file:
path: "{{ send_docker_compose_dir }}"
state: directory
mode: '0755'
- name: Create local upload directory
file:
ansible.builtin.file:
path: "{{ send_docker_volume_dir }}/uploads"
state: directory
mode: '0755'
when: send_storage_backend == "local"
- name: Create docker-compose file for send
template:
ansible.builtin.template:
src: docker-compose.yml.j2
dest: "{{ send_docker_compose_dir }}/docker-compose.yml"
mode: '0644'