Add torrent (deluge) config

This commit is contained in:
Jake Howard
2020-02-09 13:06:10 +00:00
parent 81cccea858
commit 77fe92a7e7
3 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,31 @@
- name: Create torrent directory
file:
path: '/opt/torrent'
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
become_user: root
- name: Install torrent compose file
template:
src: files/torrent/docker-compose.yml
dest: "/opt/torrent/docker-compose.yml"
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
become_user: root
- name: Cycle torrent container
docker_compose:
project_src: /opt/torrent
pull: true
remove_orphans: true
remove_volumes: true
state: "{{ item }}"
when: compose_file.changed
loop:
- absent
- present