From 8b102c9e2e14d409ea99a5b0beec2d97a40fd01e Mon Sep 17 00:00:00 2001 From: Michael Hollister Date: Sun, 17 Dec 2023 22:12:55 -0600 Subject: [PATCH] Removed uneeded placeholder db password --- docs/configuring-playbook-matrix-media-repo.md | 1 - roles/custom/matrix-media-repo/defaults/main.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/configuring-playbook-matrix-media-repo.md b/docs/configuring-playbook-matrix-media-repo.md index d5cd6b889..713384c45 100644 --- a/docs/configuring-playbook-matrix-media-repo.md +++ b/docs/configuring-playbook-matrix-media-repo.md @@ -18,7 +18,6 @@ Add the following configuration to your `inventory/host_vars/matrix.DOMAIN/vars. ```yaml matrix_media_repo_enabled: true -matrix_media_repo_database_password: "your_password" # (optional) Turned off by default # matrix_media_repo_metrics_enabled: true diff --git a/roles/custom/matrix-media-repo/defaults/main.yml b/roles/custom/matrix-media-repo/defaults/main.yml index 2cf5ab1f6..2796b5a3e 100644 --- a/roles/custom/matrix-media-repo/defaults/main.yml +++ b/roles/custom/matrix-media-repo/defaults/main.yml @@ -124,7 +124,7 @@ matrix_media_repo_federation_ignored_hosts: [] # Do NOT put your homeserver's existing database credentials here. Create a new database and # user instead. Using the same server is fine, just not the same username and database. matrix_media_repo_database_username: "matrix_media_repo" -matrix_media_repo_database_password: "your_password" +matrix_media_repo_database_password: "" matrix_media_repo_database_hostname: "{{ devture_postgres_identifier }}" matrix_media_repo_database_port: 5432 matrix_media_repo_database_name: "matrix_media_repo"