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ů.
|
- ---
- - name: Check existence of matrix-backup-borg service
- stat:
- path: "{{ matrix_systemd_path }}/matrix-backup-borg.service"
- register: matrix_backup_borg_service_stat
-
- - name: Ensure matrix-backup-borg is stopped
- service:
- name: matrix-backup-borg
- state: stopped
- enabled: false
- daemon_reload: true
- register: stopping_result
- when: "matrix_backup_borg_service_stat.stat.exists|bool"
-
- - name: Ensure matrix-backup-borg.service doesn't exist
- file:
- path: "{{ matrix_systemd_path }}/matrix-backup-borg.service"
- state: absent
- when: "matrix_backup_borg_service_stat.stat.exists|bool"
-
- - name: Ensure matrix-backup-borg.timer doesn't exist
- file:
- path: "{{ matrix_systemd_path }}/matrix-backup-borg.timer"
- state: absent
- when: "matrix_backup_borg_service_stat.stat.exists|bool"
-
- - name: Ensure systemd reloaded after matrix-backup-borg.service removal
- service:
- daemon_reload: true
- when: "matrix_backup_borg_service_stat.stat.exists|bool"
-
- - name: Ensure Matrix borg paths don't exist
- file:
- path: "{{ matrix_backup_borg_base_path }}"
- state: absent
-
- - name: Ensure borg Docker image doesn't exist
- docker_image:
- name: "{{ matrix_backup_borg_docker_image }}"
- state: absent
|