infrastructure/ansible/roles/pve_docker/tasks/calibre.yml
Jake Howard 870ac50c58
Update compose path to not be absolute
This relies on `which` to find the correct binary instead
2021-02-07 15:59:18 +00:00

24 lines
605 B
YAML

- name: Create calibre directory
file:
path: /opt/calibre
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install calibre compose file
template:
src: files/calibre/docker-compose.yml
dest: /opt/calibre/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: docker-compose -f %s config
register: compose_file
become: true
- name: restart calibre
shell:
chdir: /opt/calibre
cmd: "{{ docker_update_command }}"
when: compose_file.changed