Use FQCN
This commit is contained in:
parent
d2e6ab6c38
commit
f8a8870711
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- set_fact:
|
- ansible.builtin.set_fact:
|
||||||
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-bot-maubot.service'] }}"
|
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-bot-maubot.service'] }}"
|
||||||
when: matrix_bot_maubot_enabled|bool
|
when: matrix_bot_maubot_enabled|bool
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Ensure maubot paths exist
|
- name: Ensure maubot paths exist
|
||||||
file:
|
ansible.builtin.file:
|
||||||
path: "{{ item.path }}"
|
path: "{{ item.path }}"
|
||||||
state: directory
|
state: directory
|
||||||
mode: 0755
|
mode: 0755
|
||||||
@ -17,7 +17,7 @@
|
|||||||
when: "item.when|bool"
|
when: "item.when|bool"
|
||||||
|
|
||||||
- name: Ensure maubot configuration file created
|
- name: Ensure maubot configuration file created
|
||||||
template:
|
ansible.builtin.template:
|
||||||
src: "{{ role_path }}/templates/config/config.yaml.j2"
|
src: "{{ role_path }}/templates/config/config.yaml.j2"
|
||||||
dest: "{{ matrix_bot_maubot_data_path }}/config.yaml"
|
dest: "{{ matrix_bot_maubot_data_path }}/config.yaml"
|
||||||
owner: "{{ matrix_user_username }}"
|
owner: "{{ matrix_user_username }}"
|
||||||
@ -25,7 +25,7 @@
|
|||||||
mode: "u=rwx"
|
mode: "u=rwx"
|
||||||
|
|
||||||
- name: Ensure maubot image is pulled
|
- name: Ensure maubot image is pulled
|
||||||
docker_image:
|
community.docker.docker_image:
|
||||||
name: "{{ matrix_bot_maubot_docker_image }}"
|
name: "{{ matrix_bot_maubot_docker_image }}"
|
||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
force_source: "{{ matrix_bot_maubot_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_bot_maubot_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
@ -37,7 +37,7 @@
|
|||||||
until: result is not failed
|
until: result is not failed
|
||||||
|
|
||||||
- name: Ensure maubot repository is present on self-build
|
- name: Ensure maubot repository is present on self-build
|
||||||
git:
|
ansible.builtin.git:
|
||||||
repo: "{{ matrix_bot_maubot_docker_repo }}"
|
repo: "{{ matrix_bot_maubot_docker_repo }}"
|
||||||
dest: "{{ matrix_bot_maubot_docker_src_files_path }}"
|
dest: "{{ matrix_bot_maubot_docker_src_files_path }}"
|
||||||
force: "yes"
|
force: "yes"
|
||||||
@ -47,7 +47,7 @@
|
|||||||
when: "matrix_bot_maubot_container_image_self_build|bool"
|
when: "matrix_bot_maubot_container_image_self_build|bool"
|
||||||
|
|
||||||
- name: Ensure maubot image is built
|
- name: Ensure maubot image is built
|
||||||
docker_image:
|
community.docker.docker_image:
|
||||||
name: "{{ matrix_bot_maubot_docker_image }}"
|
name: "{{ matrix_bot_maubot_docker_image }}"
|
||||||
source: build
|
source: build
|
||||||
force_source: "{{ matrix_bot_maubot_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_bot_maubot_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
@ -59,18 +59,18 @@
|
|||||||
when: "matrix_bot_maubot_container_image_self_build|bool"
|
when: "matrix_bot_maubot_container_image_self_build|bool"
|
||||||
|
|
||||||
- name: Ensure matrix-bot-maubot.service installed
|
- name: Ensure matrix-bot-maubot.service installed
|
||||||
template:
|
ansible.builtin.template:
|
||||||
src: "{{ role_path }}/templates/systemd/matrix-bot-maubot.service.j2"
|
src: "{{ role_path }}/templates/systemd/matrix-bot-maubot.service.j2"
|
||||||
dest: "{{ matrix_systemd_path }}/matrix-bot-maubot.service"
|
dest: "{{ matrix_systemd_path }}/matrix-bot-maubot.service"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
register: matrix_bot_maubot_systemd_service_result
|
register: matrix_bot_maubot_systemd_service_result
|
||||||
|
|
||||||
- name: Ensure systemd reloaded after matrix-bot-maubot.service installation
|
- name: Ensure systemd reloaded after matrix-bot-maubot.service installation
|
||||||
service:
|
ansible.builtin.service:
|
||||||
daemon_reload: true
|
daemon_reload: true
|
||||||
when: "matrix_bot_maubot_systemd_service_result.changed|bool"
|
when: "matrix_bot_maubot_systemd_service_result.changed|bool"
|
||||||
|
|
||||||
- name: Ensure matrix-bot-maubot.service restarted, if necessary
|
- name: Ensure matrix-bot-maubot.service restarted, if necessary
|
||||||
service:
|
ansible.builtin.service:
|
||||||
name: "matrix-bot-maubot.service"
|
name: "matrix-bot-maubot.service"
|
||||||
state: restarted
|
state: restarted
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Check existence of matrix-maubot service
|
- name: Check existence of matrix-maubot service
|
||||||
stat:
|
ansible.builtin.stat:
|
||||||
path: "{{ matrix_systemd_path }}/matrix-bot-maubot.service"
|
path: "{{ matrix_systemd_path }}/matrix-bot-maubot.service"
|
||||||
register: matrix_bot_maubot_service_stat
|
register: matrix_bot_maubot_service_stat
|
||||||
|
|
||||||
- name: Ensure matrix-bot-maubot is stopped
|
- name: Ensure matrix-bot-maubot is stopped
|
||||||
service:
|
ansible.builtin.service:
|
||||||
name: matrix-bot-maubot
|
name: matrix-bot-maubot
|
||||||
state: stopped
|
state: stopped
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -15,22 +15,22 @@
|
|||||||
when: "matrix_bot_maubot_service_stat.stat.exists|bool"
|
when: "matrix_bot_maubot_service_stat.stat.exists|bool"
|
||||||
|
|
||||||
- name: Ensure matrix-bot-maubot.service doesn't exist
|
- name: Ensure matrix-bot-maubot.service doesn't exist
|
||||||
file:
|
ansible.builtin.file:
|
||||||
path: "{{ matrix_systemd_path }}/matrix-bot-maubot.service"
|
path: "{{ matrix_systemd_path }}/matrix-bot-maubot.service"
|
||||||
state: absent
|
state: absent
|
||||||
when: "matrix_bot_maubot_service_stat.stat.exists|bool"
|
when: "matrix_bot_maubot_service_stat.stat.exists|bool"
|
||||||
|
|
||||||
- name: Ensure systemd reloaded after matrix-bot-maubot.service removal
|
- name: Ensure systemd reloaded after matrix-bot-maubot.service removal
|
||||||
service:
|
ansible.builtin.service:
|
||||||
daemon_reload: true
|
daemon_reload: true
|
||||||
when: "matrix_bot_maubot_service_stat.stat.exists|bool"
|
when: "matrix_bot_maubot_service_stat.stat.exists|bool"
|
||||||
|
|
||||||
- name: Ensure Matrix maubot paths don't exist
|
- name: Ensure Matrix maubot paths don't exist
|
||||||
file:
|
ansible.builtin.file:
|
||||||
path: "{{ matrix_bot_maubot_base_path }}"
|
path: "{{ matrix_bot_maubot_base_path }}"
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: Ensure maubot Docker image doesn't exist
|
- name: Ensure maubot Docker image doesn't exist
|
||||||
docker_image:
|
community.docker.docker_image:
|
||||||
name: "{{ matrix_bot_maubot_docker_image }}"
|
name: "{{ matrix_bot_maubot_docker_image }}"
|
||||||
state: absent
|
state: absent
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Fail if required settings not defined
|
- name: Fail if required settings not defined
|
||||||
fail:
|
ansible.builtin.fail:
|
||||||
msg: >-
|
msg: >-
|
||||||
You need to define a required configuration setting (`{{ item }}`).
|
You need to define a required configuration setting (`{{ item }}`).
|
||||||
when: "vars[item] == ''"
|
when: "vars[item] == ''"
|
||||||
|
Loading…
Reference in New Issue
Block a user