소스 검색

Check irc service is present before stopping it

pull/1093/head
Jez Cope 5 년 전
부모
커밋
a8dbd93f61
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. +6
    -0
      roles/matrix-bridge-appservice-irc/tasks/migrate_nedb_to_postgres.yml

+ 6
- 0
roles/matrix-bridge-appservice-irc/tasks/migrate_nedb_to_postgres.yml 파일 보기

@@ -26,10 +26,16 @@
become: false
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
service:
name: matrix-appservice-irc
state: stopped
when: "matrix_appservice_irc_service_stat.stat.exists"

- name: Import appservice-irc NeDB database into Postgres
command:


불러오는 중...
취소
저장