mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-10 12:47:39 +01:00
matrix-ntfy: fix and separate out uninstall tasks
This commit is contained in:
parent
408e2e9b4e
commit
efe1f21f05
@ -4,7 +4,14 @@
|
|||||||
tags:
|
tags:
|
||||||
- always
|
- always
|
||||||
|
|
||||||
- import_tasks: "{{ role_path }}/tasks/setup.yml"
|
- import_tasks: "{{ role_path }}/tasks/setup_install.yml"
|
||||||
|
when: "run_setup|bool and matrix_ntfy_enabled|bool"
|
||||||
|
tags:
|
||||||
|
- setup-all
|
||||||
|
- setup-ntfy
|
||||||
|
|
||||||
|
- import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|
||||||
|
when: "run_setup|bool and not matrix_ntfy_enabled|bool"
|
||||||
tags:
|
tags:
|
||||||
- setup-all
|
- setup-all
|
||||||
- setup-ntfy
|
- setup-ntfy
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
---
|
---
|
||||||
#
|
|
||||||
# Tasks related to setting up matrix-ntfy
|
|
||||||
#
|
|
||||||
|
|
||||||
- name: Ensure matrix-ntfy image is pulled
|
- name: Ensure matrix-ntfy image is pulled
|
||||||
docker_image:
|
docker_image:
|
||||||
@ -9,7 +6,6 @@
|
|||||||
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_ntfy_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_ntfy_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_ntfy_docker_image_force_pull }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_ntfy_docker_image_force_pull }}"
|
||||||
when: "matrix_ntfy_enabled|bool"
|
|
||||||
register: result
|
register: result
|
||||||
retries: "{{ matrix_container_retries_count }}"
|
retries: "{{ matrix_container_retries_count }}"
|
||||||
delay: "{{ matrix_container_retries_delay }}"
|
delay: "{{ matrix_container_retries_delay }}"
|
||||||
@ -32,38 +28,8 @@
|
|||||||
dest: "{{ matrix_systemd_path }}/matrix-ntfy.service"
|
dest: "{{ matrix_systemd_path }}/matrix-ntfy.service"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
register: matrix_ntfy_systemd_service_result
|
register: matrix_ntfy_systemd_service_result
|
||||||
when: matrix_ntfy_enabled|bool
|
|
||||||
|
|
||||||
- name: Ensure systemd reloaded after matrix-ntfy.service installation
|
- name: Ensure systemd reloaded after matrix-ntfy.service installation
|
||||||
service:
|
service:
|
||||||
daemon_reload: true
|
daemon_reload: true
|
||||||
when: "matrix_ntfy_enabled|bool and matrix_ntfy_systemd_service_result.changed"
|
when: "matrix_ntfy_systemd_service_result.changed"
|
||||||
|
|
||||||
#
|
|
||||||
# Tasks related to getting rid of matrix-ntfy (if it was previously enabled)
|
|
||||||
#
|
|
||||||
|
|
||||||
- name: Check existence of matrix-ntfy service
|
|
||||||
stat:
|
|
||||||
path: "{{ matrix_systemd_path }}/matrix-ntfy.service"
|
|
||||||
register: matrix_ntfy_service_stat
|
|
||||||
|
|
||||||
- name: Ensure matrix-ntfy is stopped
|
|
||||||
service:
|
|
||||||
name: matrix-ntfy
|
|
||||||
state: stopped
|
|
||||||
enabled: false
|
|
||||||
daemon_reload: true
|
|
||||||
register: stopping_result
|
|
||||||
when: "not matrix_ntfy_enabled|bool and matrix_ntfy_service_stat.stat.exists"
|
|
||||||
|
|
||||||
- name: Ensure matrix-ntfy.service doesn't exist
|
|
||||||
file:
|
|
||||||
path: "{{ matrix_systemd_path }}/matrix-ntfy.service"
|
|
||||||
state: absent
|
|
||||||
when: "not matrix_ntfy_enabled|bool and matrix_ntfy_service_stat.stat.exists"
|
|
||||||
|
|
||||||
- name: Ensure systemd reloaded after matrix-ntfy.service removal
|
|
||||||
service:
|
|
||||||
daemon_reload: true
|
|
||||||
when: "not matrix_ntfy_enabled|bool and matrix_ntfy_service_stat.stat.exists"
|
|
36
roles/matrix-ntfy/tasks/setup_uninstall.yml
Normal file
36
roles/matrix-ntfy/tasks/setup_uninstall.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
- name: Check existence of matrix-ntfy service
|
||||||
|
stat:
|
||||||
|
path: "{{ matrix_systemd_path }}/matrix-ntfy.service"
|
||||||
|
register: matrix_ntfy_service_stat
|
||||||
|
|
||||||
|
- name: Ensure matrix-ntfy is stopped
|
||||||
|
service:
|
||||||
|
name: matrix-ntfy
|
||||||
|
state: stopped
|
||||||
|
enabled: false
|
||||||
|
daemon_reload: true
|
||||||
|
register: stopping_result
|
||||||
|
when: "matrix_ntfy_service_stat.stat.exists"
|
||||||
|
|
||||||
|
- name: Ensure matrix-ntfy.service doesn't exist
|
||||||
|
file:
|
||||||
|
path: "{{ matrix_systemd_path }}/matrix-ntfy.service"
|
||||||
|
state: absent
|
||||||
|
when: "matrix_ntfy_service_stat.stat.exists"
|
||||||
|
|
||||||
|
- name: Ensure systemd reloaded after matrix-ntfy.service removal
|
||||||
|
service:
|
||||||
|
daemon_reload: true
|
||||||
|
when: "matrix_ntfy_service_stat.stat.exists"
|
||||||
|
|
||||||
|
- name: Ensure matrix-ntfy path doesn't exist
|
||||||
|
file:
|
||||||
|
path: "{{ matrix_ntfy_base_path }}"
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
- name: Ensure ntfy Docker image doesn't exist
|
||||||
|
docker_image:
|
||||||
|
name: "{{ matrix_ntfy_docker_image }}"
|
||||||
|
state: absent
|
Loading…
Reference in New Issue
Block a user