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.
37 lines
1.1 KiB
37 lines
1.1 KiB
4 years ago
|
---
|
||
|
|
||
|
- name: Check existence of matrix-etherpad service
|
||
2 years ago
|
ansible.builtin.stat:
|
||
4 years ago
|
path: "{{ matrix_systemd_path }}/matrix-etherpad.service"
|
||
|
register: matrix_etherpad_service_stat
|
||
|
|
||
|
- name: Ensure matrix-etherpad is stopped
|
||
2 years ago
|
ansible.builtin.service:
|
||
4 years ago
|
name: matrix-etherpad
|
||
|
state: stopped
|
||
3 years ago
|
enabled: false
|
||
|
daemon_reload: true
|
||
4 years ago
|
register: stopping_result
|
||
2 years ago
|
when: "matrix_etherpad_service_stat.stat.exists | bool"
|
||
4 years ago
|
|
||
|
- name: Ensure matrix-etherpad.service doesn't exist
|
||
2 years ago
|
ansible.builtin.file:
|
||
4 years ago
|
path: "{{ matrix_systemd_path }}/matrix-etherpad.service"
|
||
|
state: absent
|
||
2 years ago
|
when: "matrix_etherpad_service_stat.stat.exists | bool"
|
||
4 years ago
|
|
||
|
- name: Ensure systemd reloaded after matrix-etherpad.service removal
|
||
2 years ago
|
ansible.builtin.service:
|
||
3 years ago
|
daemon_reload: true
|
||
2 years ago
|
when: "matrix_etherpad_service_stat.stat.exists | bool"
|
||
4 years ago
|
|
||
|
- name: Ensure Etherpad base directory doesn't exist
|
||
2 years ago
|
ansible.builtin.file:
|
||
4 years ago
|
path: "{{ matrix_etherpad_base_path }}"
|
||
|
state: absent
|
||
|
|
||
4 years ago
|
- name: Ensure Etherpad Docker image doesn't exist
|
||
2 years ago
|
community.docker.docker_image:
|
||
4 years ago
|
name: "{{ matrix_etherpad_docker_image }}"
|
||
|
state: absent
|