2022-04-21 08:07:47 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration-bot paths exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2022-04-21 08:07:47 +00:00
|
|
|
path: "{{ item.path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
with_items:
|
|
|
|
- {path: "{{ matrix_bot_matrix_registration_bot_config_path }}", when: true}
|
2023-07-24 10:57:06 +00:00
|
|
|
- {path: "{{ matrix_bot_matrix_registration_bot_data_path }}", when: true}
|
2022-04-21 08:07:47 +00:00
|
|
|
- {path: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}", when: true}
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "item.when | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-registration-bot configuration file created
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2022-04-21 08:07:47 +00:00
|
|
|
src: "{{ role_path }}/templates/config/config.yml.j2"
|
|
|
|
dest: "{{ matrix_bot_matrix_registration_bot_config_path }}/config.yml"
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
mode: 0640
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration-bot image is pulled
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2022-04-21 08:07:47 +00:00
|
|
|
name: "{{ matrix_bot_matrix_registration_bot_docker_image }}"
|
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
|
|
force_source: "{{ matrix_bot_matrix_registration_bot_docker_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 matrix_bot_matrix_registration_bot_docker_image_force_pull }}"
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "not matrix_bot_matrix_registration_bot_container_image_self_build | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
register: result
|
2022-11-04 14:44:29 +00:00
|
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
2022-04-21 08:07:47 +00:00
|
|
|
until: result is not failed
|
|
|
|
|
|
|
|
- name: Ensure matrix-registration-bot repository is present on self-build
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.git:
|
2022-04-21 08:07:47 +00:00
|
|
|
repo: "{{ matrix_bot_matrix_registration_bot_docker_repo }}"
|
2022-07-18 11:43:52 +00:00
|
|
|
version: "{{ matrix_bot_matrix_registration_bot_docker_repo_version }}"
|
2022-04-21 08:07:47 +00:00
|
|
|
dest: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}"
|
|
|
|
force: "yes"
|
|
|
|
become: true
|
|
|
|
become_user: "{{ matrix_user_username }}"
|
|
|
|
register: matrix_bot_matrix_registration_bot_git_pull_results
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_bot_matrix_registration_bot_container_image_self_build | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
|
|
|
|
- name: Ensure matrix-registration-bot image is built
|
2022-10-28 11:20:17 +00:00
|
|
|
community.docker.docker_image:
|
2022-04-21 08:07:47 +00:00
|
|
|
name: "{{ matrix_bot_matrix_registration_bot_docker_image }}"
|
|
|
|
source: build
|
|
|
|
force_source: "{{ matrix_bot_matrix_registration_bot_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
2024-01-05 15:54:50 +00:00
|
|
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_bot_matrix_registration_bot_git_pull_results.changed }}"
|
2022-04-21 08:07:47 +00:00
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}"
|
|
|
|
pull: true
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_bot_matrix_registration_bot_container_image_self_build | bool"
|
2022-04-21 08:07:47 +00:00
|
|
|
|
2024-01-07 07:46:09 +00:00
|
|
|
- name: Ensure matrix-registration-bot container network is created
|
|
|
|
community.general.docker_network:
|
2024-03-24 17:15:43 +00:00
|
|
|
enable_ipv6: "{{ devture_systemd_docker_base_ipv6_enabled }}"
|
2024-01-07 07:46:09 +00:00
|
|
|
name: "{{ matrix_bot_matrix_registration_bot_container_network }}"
|
|
|
|
driver: bridge
|
|
|
|
|
2022-04-21 08:07:47 +00:00
|
|
|
- name: Ensure matrix-bot-matrix-registration-bot.service installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.template:
|
2022-04-21 08:07:47 +00:00
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-bot-matrix-registration-bot.service.j2"
|
2022-11-04 14:38:38 +00:00
|
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-bot-matrix-registration-bot.service"
|
2022-04-21 08:07:47 +00:00
|
|
|
mode: 0644
|