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.
26 lines
884 B
26 lines
884 B
6 years ago
|
---
|
||
|
|
||
6 years ago
|
- name: Check existence of matrix-appservice-discord service
|
||
2 years ago
|
ansible.builtin.stat:
|
||
5 years ago
|
path: "{{ matrix_systemd_path }}/matrix-appservice-discord.service"
|
||
6 years ago
|
register: matrix_appservice_discord_service_stat
|
||
|
|
||
|
- name: Ensure matrix-appservice-discord is stopped
|
||
2 years ago
|
ansible.builtin.service:
|
||
6 years ago
|
name: matrix-appservice-discord
|
||
|
state: stopped
|
||
3 years ago
|
enabled: false
|
||
|
daemon_reload: true
|
||
6 years ago
|
when: "matrix_appservice_discord_service_stat.stat.exists"
|
||
|
|
||
6 years ago
|
- name: Ensure matrix-appservice-discord.service doesn't exist
|
||
2 years ago
|
ansible.builtin.file:
|
||
5 years ago
|
path: "{{ matrix_systemd_path }}/matrix-appservice-discord.service"
|
||
6 years ago
|
state: absent
|
||
6 years ago
|
when: "matrix_appservice_discord_service_stat.stat.exists"
|
||
|
|
||
|
- name: Ensure systemd reloaded after matrix-appservice-discord.service removal
|
||
2 years ago
|
ansible.builtin.service:
|
||
3 years ago
|
daemon_reload: true
|
||
6 years ago
|
when: "matrix_appservice_discord_service_stat.stat.exists"
|