ソースを参照

Do not execute additional databases creation code if not necessary

The tasks in `create_additional_databases.yml` will likely
ensure `matrix-postgres.service` is started, etc.

If no additional databases are defined, we'd rather not execute that
file and all these tasks that it may do in the future.
pull/740/head
Slavi Pantaleev 5年前
コミット
bbc09d013b
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      roles/matrix-postgres/tasks/setup_postgres.yml

+ 1
- 1
roles/matrix-postgres/tasks/setup_postgres.yml ファイルの表示

@@ -118,7 +118,7 @@
apply: apply:
tags: tags:
- always - always
when: "matrix_postgres_enabled|bool"
when: "matrix_postgres_enabled|bool and matrix_postgres_additional_databases|length > 0"


# #
# Tasks related to getting rid of the internal postgres server (if it was previously enabled) # Tasks related to getting rid of the internal postgres server (if it was previously enabled)


読み込み中…
キャンセル
保存