Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- - name: Check existence of matrix-backup-borg service
- ansible.builtin.stat:
- path: "{{ matrix_systemd_path }}/matrix-backup-borg.service"
- register: matrix_backup_borg_service_stat
-
- - name: Ensure matrix-backup-borg is stopped
- ansible.builtin.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
- ansible.builtin.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
- ansible.builtin.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
- ansible.builtin.service:
- daemon_reload: true
- when: "matrix_backup_borg_service_stat.stat.exists | bool"
-
- - name: Ensure Matrix borg paths don't exist
- ansible.builtin.file:
- path: "{{ matrix_backup_borg_base_path }}"
- state: absent
-
- - name: Ensure borg Docker image doesn't exist
- community.docker.docker_image:
- name: "{{ matrix_backup_borg_docker_image }}"
- state: absent
|