Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

21 řádky
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