From a967f44c10ca2d9ce4ad902d89f4ca10c597da6c Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Tue, 7 May 2024 09:31:44 +0300 Subject: [PATCH] Ensure matrix-ssl-nginx-proxy-reload.{timer,service} are removed Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/3307 --- .../matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml b/roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml index c1c66409b..20e600e1f 100644 --- a/roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml +++ b/roles/custom/matrix_playbook_migration/tasks/uninstall_matrix_ssl.yml @@ -5,10 +5,12 @@ path: "{{ matrix_base_data_path }}/ssl" state: absent -- name: Ensure matrix-ssl-lets-encrypt-certificates-renew systemd timer and service are gone +- name: Ensure matrix SSL-related systemd timers and services are gone ansible.builtin.file: path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}" state: absent with_items: - matrix-ssl-lets-encrypt-certificates-renew.timer - matrix-ssl-lets-encrypt-certificates-renew.service + - matrix-ssl-nginx-proxy-reload.timer + - matrix-ssl-nginx-proxy-reload.service