Check irc service is present before stopping it
This commit is contained in:
parent
36e583cc21
commit
a8dbd93f61
@ -26,10 +26,16 @@
|
|||||||
become: false
|
become: false
|
||||||
when: "matrix_postgres_service_start_result.changed|bool"
|
when: "matrix_postgres_service_start_result.changed|bool"
|
||||||
|
|
||||||
|
- name: Check existence of matrix-appservice-irc service
|
||||||
|
stat:
|
||||||
|
path: "{{ matrix_systemd_path }}/matrix-appservice-irc.service"
|
||||||
|
register: matrix_appservice_irc_service_stat
|
||||||
|
|
||||||
- name: Ensure matrix-appservice-irc is stopped
|
- name: Ensure matrix-appservice-irc is stopped
|
||||||
service:
|
service:
|
||||||
name: matrix-appservice-irc
|
name: matrix-appservice-irc
|
||||||
state: stopped
|
state: stopped
|
||||||
|
when: "matrix_appservice_irc_service_stat.stat.exists"
|
||||||
|
|
||||||
- name: Import appservice-irc NeDB database into Postgres
|
- name: Import appservice-irc NeDB database into Postgres
|
||||||
command:
|
command:
|
||||||
|
Loading…
Reference in New Issue
Block a user