Sfoglia il codice sorgente

Merge pull request #1093 from jezcope/fix/irc-db-migrate-after-disable

Check IRC appservice service is present before stopping it
pull/1094/head
Slavi Pantaleev 5 anni fa
committed by GitHub
parent
commit
1cb6a0c96f
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  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 Vedi File

@@ -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:


Caricamento…
Annulla
Salva