Ensure matrix-ssl-nginx-proxy-reload.{timer,service} are removed

Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/3307
This commit is contained in:
Slavi Pantaleev 2024-05-07 09:31:44 +03:00
parent 14f09cce79
commit a967f44c10

View File

@ -5,10 +5,12 @@
path: "{{ matrix_base_data_path }}/ssl" path: "{{ matrix_base_data_path }}/ssl"
state: absent 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: ansible.builtin.file:
path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}" path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}"
state: absent state: absent
with_items: with_items:
- matrix-ssl-lets-encrypt-certificates-renew.timer - matrix-ssl-lets-encrypt-certificates-renew.timer
- matrix-ssl-lets-encrypt-certificates-renew.service - matrix-ssl-lets-encrypt-certificates-renew.service
- matrix-ssl-nginx-proxy-reload.timer
- matrix-ssl-nginx-proxy-reload.service