Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
645 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Ensure Matrix SSL-related files are deleted
  6. ansible.builtin.file:
  7. path: "{{ matrix_base_data_path }}/ssl"
  8. state: absent
  9. - name: Ensure Matrix SSL-related systemd timers and services are gone
  10. ansible.builtin.file:
  11. path: "{{ devture_systemd_docker_base_systemd_path }}/{{ item }}"
  12. state: absent
  13. with_items:
  14. - matrix-ssl-lets-encrypt-certificates-renew.timer
  15. - matrix-ssl-lets-encrypt-certificates-renew.service
  16. - matrix-ssl-nginx-proxy-reload.timer
  17. - matrix-ssl-nginx-proxy-reload.service