Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

28 строки
881 B

  1. # SPDX-FileCopyrightText: 2026 Chiu Ki Sit
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - name: Deploy Matrix boot recovery script (Synology)
  6. ansible.builtin.template:
  7. src: "{{ role_path }}/templates/bin/matrix-synology-boot-fix.j2"
  8. dest: "{{ matrix_bin_path }}/matrix-synology-boot-fix"
  9. mode: "0750"
  10. owner: root
  11. group: root
  12. - name: Deploy Matrix boot recovery service (Synology)
  13. ansible.builtin.template:
  14. src: "{{ role_path }}/templates/systemd/matrix-synology-boot-fix.service.j2"
  15. dest: /etc/systemd/system/matrix-synology-boot-fix.service
  16. mode: "0644"
  17. register: matrix_synology_boot_fix_service
  18. - name: Reload systemd and enable Matrix boot recovery service (Synology)
  19. ansible.builtin.systemd:
  20. name: matrix-synology-boot-fix.service
  21. daemon_reload: true
  22. enabled: true
  23. when: matrix_synology_boot_fix_service.changed