2023-03-17 10:34:15 +01:00
|
|
|
---
|
|
|
|
|
2023-04-03 09:19:13 +02:00
|
|
|
- name: Ensure Nextcloud paths exists
|
2023-03-17 10:34:15 +01:00
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ item.path }}"
|
2023-04-03 09:19:13 +02:00
|
|
|
state: "{{ item.state }}"
|
2023-03-17 10:34:15 +01:00
|
|
|
mode: 0700
|
|
|
|
owner: "{{ nextcloud_uid }}"
|
|
|
|
group: "{{ nextcloud_gid }}"
|
|
|
|
with_items:
|
2023-04-03 09:19:13 +02:00
|
|
|
- path: "{{ nextcloud_base_path }}"
|
|
|
|
state: directory
|
|
|
|
when: true
|
|
|
|
- path: "{{ nextcloud_config_path }}"
|
|
|
|
state: directory
|
|
|
|
when: true
|
|
|
|
- path: "{{ nextcloud_data_path }}"
|
|
|
|
state: directory
|
|
|
|
when: true
|
|
|
|
- path: "{{ nextcloud_customized_container_src_path }}"
|
|
|
|
state: directory
|
|
|
|
when: "{{ nextcloud_container_image_customizations_enabled }}"
|
|
|
|
- path: "{{ nextcloud_redis_session_ini_path }}"
|
|
|
|
state: "{{ 'touch' if nextcloud_redis_is_configured else 'absent' }}"
|
|
|
|
when: true
|
2023-03-17 10:34:15 +01:00
|
|
|
when: item.when | bool
|
|
|
|
|
|
|
|
- name: Ensure Nextcloud support files installed
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ role_path }}/templates/{{ item }}.j2"
|
|
|
|
dest: "{{ nextcloud_config_path }}/{{ item }}"
|
|
|
|
mode: 0640
|
|
|
|
with_items:
|
|
|
|
- env
|
|
|
|
- labels
|
|
|
|
|
|
|
|
- name: Ensure Nextcloud container image is pulled
|
|
|
|
community.docker.docker_image:
|
|
|
|
name: "{{ nextcloud_container_image }}"
|
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
|
|
force_source: "{{ nextcloud_container_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
|
|
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else nextcloud_container_image_force_pull }}"
|
|
|
|
register: result
|
|
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
|
|
|
until: result is not failed
|
|
|
|
|
|
|
|
- when: "nextcloud_container_image_customizations_enabled | bool"
|
|
|
|
block:
|
|
|
|
- name: Ensure customizations Dockerfile is created
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ role_path }}/templates/customizations/Dockerfile.j2"
|
|
|
|
dest: "{{ nextcloud_customized_container_src_path }}/Dockerfile"
|
2023-04-02 18:11:28 +02:00
|
|
|
owner: "{{ nextcloud_uid }}"
|
|
|
|
group: "{{ nextcloud_gid }}"
|
2023-03-17 10:34:15 +01:00
|
|
|
mode: 0640
|
2023-07-06 19:11:55 +02:00
|
|
|
register: nextcloud_container_image_customizations_dockerfile_result
|
2023-03-17 10:34:15 +01:00
|
|
|
|
|
|
|
- name: Ensure customized container image for Nextcloud is built
|
|
|
|
community.docker.docker_image:
|
|
|
|
name: "{{ nextcloud_container_image_customized }}"
|
|
|
|
source: build
|
2023-07-06 19:11:55 +02:00
|
|
|
force_source: "{{ nextcloud_container_image_customizations_dockerfile_result.changed }}"
|
2023-03-17 10:34:15 +01:00
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ nextcloud_customized_container_src_path }}"
|
|
|
|
pull: true
|
|
|
|
|
|
|
|
- name: Ensure Nextcloud container network is created
|
|
|
|
community.general.docker_network:
|
|
|
|
name: "{{ nextcloud_container_network }}"
|
|
|
|
driver: bridge
|
|
|
|
|
|
|
|
- name: Ensure Nextcloud systemd services installed
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ role_path }}/templates/systemd/{{ item }}.j2"
|
|
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/{{ nextcloud_identifier }}-{{ item }}"
|
|
|
|
mode: 0640
|
|
|
|
with_items:
|
|
|
|
- server.service
|
|
|
|
- cron.service
|
|
|
|
- cron.timer
|